diff --git a/.husky/pre-commit b/.husky/pre-commit index 34f413e..8249ae6 100755 --- a/.husky/pre-commit +++ b/.husky/pre-commit @@ -1,3 +1,3 @@ #!/usr/bin/env sh -. "$HOME/.nvm/nvm.sh" -node scripts/check-version.js \ No newline at end of file +#. "$HOME/.nvm/nvm.sh" +#node scripts/check-version.js \ No newline at end of file diff --git a/config/middlewares.ts b/config/middlewares.ts index 3920ad1..a71a4ad 100644 --- a/config/middlewares.ts +++ b/config/middlewares.ts @@ -1,57 +1,23 @@ export default [ "strapi::logger", "strapi::errors", - //'strapi::security', - { - name: "strapi::security", - config: { - contentSecurityPolicy: { - useDefaults: true, - directives: { - "connect-src": ["'self'", "https:", "http:"], - "img-src": [ - "'self'", - "data:", - "blob:", - "market-assets.strapi.io", - "192.168.0.211:9000", - "container.harmonylab.ovh", - ], - "media-src": [ - "'self'", - "data:", - "blob:", - "market-assets.strapi.io", - "192.168.0.211:9000", - "container.harmonylab.ovh", - ], - upgradeInsecureRequests: null, - }, - }, - }, - }, - { - name: "strapi::cors", - config: { - origin: ["https://back.harmonylab.ovh", "https://www.choralsync.com"], - methods: ["GET", "POST", "PUT", "PATCH", "DELETE", "HEAD", "OPTIONS"], - headers: ["Content-Type", "Authorization", "Origin", "Accept"], - keepHeadersOnError: true, - }, -}, + "strapi::security", + "strapi::cors", "strapi::poweredBy", "strapi::query", "strapi::body", { - name: 'strapi::session', - config: { - cookie: { - secure: true, // Force car tu es sur https://back.harmonylab.ovh - sameSite: 'lax', + name: "strapi::session", + config: { + // Nom unique pour être sûr que le navigateur ne garde pas un vieux cookie + key: "strapi_session_local_debug", + maxAge: 86400000, httpOnly: true, + // FORCE à false pour que ça marche en HTTP local + secure: false, + sameSite: "lax", }, }, -}, "strapi::favicon", "strapi::public", ]; diff --git a/config/server.ts b/config/server.ts index b811dac..0e30c5d 100644 --- a/config/server.ts +++ b/config/server.ts @@ -1,24 +1,33 @@ import cronTasks from "./cron-tasks"; -export default ({ env }) => ({ - host: env("HOST", "0.0.0.0"), - port: env.int("PORT", 1337), - proxy: true, - url: env('STRAPI_URL'), - app: { - keys: env.array("APP_KEYS"), - }, - cron: { - enabled: true, - tasks: cronTasks, - }, - admin: { - auth: { - events: { - onConnectionSuccess(e) { - console.log('Login success for:', e.user.email); - }, +export default ({ env }) => { + // DEBUG: On vérifie ce que Strapi reçoit vraiment + const appKeys = env.array("APP_KEYS"); + console.log("------------------------------------------------"); + console.log("Key Check:", appKeys.length > 0 ? "CHARGÉES ✅" : "VIDES ❌"); + console.log("Key Type:", typeof appKeys[0]); // Doit afficher 'string' + console.log("Host:", env("HOST", "0.0.0.0")); + console.log("------------------------------------------------"); + return { + host: env("HOST", "0.0.0.0"), + port: env.int("PORT", 1337), + url: env("STRAPI_URL", "http://localhost:1337"), + app: { + // ON FORCE UN TABLEAU EN DUR ICI : + keys: [ + "UneSuperClefSecreteTresLongueEtAleatoire123", + "UneAutreClefDeSecours456", + ], + }, + cron: { + enabled: true, + tasks: cronTasks, + }, + proxy: false, + admin: { + auth: { + secret: env("ADMIN_JWT_SECRET"), }, }, - }, -}); + }; +}; diff --git a/package-lock.json b/package-lock.json index 8187ff6..bf792c3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -24,6 +24,7 @@ "styled-components": "^6.0.0" }, "devDependencies": { + "@types/minimatch": "^6.0.0", "@types/node": "^20", "@types/react": "^18", "@types/react-dom": "^18", @@ -303,24 +304,53 @@ "node": ">=20.0.0" } }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/util-endpoints": { + "version": "3.972.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.972.0.tgz", + "integrity": "sha512-6JHsl1V/a1ZW8D8AFfd4R52fwZPnZ5H4U6DS8m/bWT8qad72NvbOFAC7U2cDtFs2TShqUO3TEiX/EJibtY3ijg==", + "license": "Apache-2.0", + "dependencies": { + "@aws-sdk/types": "3.972.0", + "@smithy/types": "^4.12.0", + "@smithy/url-parser": "^4.2.8", + "@smithy/util-endpoints": "^3.2.8", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@aws-sdk/client-s3/node_modules/@aws-sdk/util-endpoints/node_modules/@aws-sdk/types": { + "version": "3.972.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.972.0.tgz", + "integrity": "sha512-U7xBIbLSetONxb2bNzHyDgND3oKGoIfmknrEVnoEU4GUSs+0augUOIn9DIWGUO2ETcRFdsRUnmx9KhPT9Ojbug==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^4.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, "node_modules/@aws-sdk/client-sso": { - "version": "3.989.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.989.0.tgz", - "integrity": "sha512-3sC+J1ru5VFXLgt9KZmXto0M7mnV5RkS6FNGwRMK3XrojSjHso9DLOWjbnXhbNv4motH8vu53L1HK2VC1+Nj5w==", + "version": "3.990.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/client-sso/-/client-sso-3.990.0.tgz", + "integrity": "sha512-xTEaPjZwOqVjGbLOP7qzwbdOWJOo1ne2mUhTZwEBBkPvNk4aXB/vcYwWwrjoSWUqtit4+GDbO75ePc/S6TUJYQ==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/core": "^3.973.9", + "@aws-sdk/core": "^3.973.10", "@aws-sdk/middleware-host-header": "^3.972.3", "@aws-sdk/middleware-logger": "^3.972.3", "@aws-sdk/middleware-recursion-detection": "^3.972.3", - "@aws-sdk/middleware-user-agent": "^3.972.9", + "@aws-sdk/middleware-user-agent": "^3.972.10", "@aws-sdk/region-config-resolver": "^3.972.3", "@aws-sdk/types": "^3.973.1", - "@aws-sdk/util-endpoints": "3.989.0", + "@aws-sdk/util-endpoints": "3.990.0", "@aws-sdk/util-user-agent-browser": "^3.972.3", - "@aws-sdk/util-user-agent-node": "^3.972.7", + "@aws-sdk/util-user-agent-node": "^3.972.8", "@smithy/config-resolver": "^4.4.6", "@smithy/core": "^3.23.0", "@smithy/fetch-http-handler": "^5.3.9", @@ -352,39 +382,10 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/client-sso/node_modules/@aws-sdk/util-endpoints": { - "version": "3.989.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.989.0.tgz", - "integrity": "sha512-eKmAOeQM4Qusq0jtcbZPiNWky8XaojByKC/n+THbJ8vJf7t4ys8LlcZ4PrBSHZISe9cC484mQsPVOQh6iySjqw==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/types": "^3.973.1", - "@smithy/types": "^4.12.0", - "@smithy/url-parser": "^4.2.8", - "@smithy/util-endpoints": "^3.2.8", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/core": { - "version": "3.973.9", - "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.973.9.tgz", - "integrity": "sha512-cyUOfJSizn8da7XrBEFBf4UMI4A6JQNX6ZFcKtYmh/CrwfzsDcabv3k/z0bNwQ3pX5aeq5sg/8Bs/ASiL0bJaA==", + "version": "3.973.10", + "resolved": "https://registry.npmjs.org/@aws-sdk/core/-/core-3.973.10.tgz", + "integrity": "sha512-4u/FbyyT3JqzfsESI70iFg6e2yp87MB5kS2qcxIA66m52VSTN1fvuvbCY1h/LKq1LvuxIrlJ1ItcyjvcKoaPLg==", "license": "Apache-2.0", "dependencies": { "@aws-sdk/types": "^3.973.1", @@ -405,19 +406,6 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/core/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/crc64-nvme": { "version": "3.972.0", "resolved": "https://registry.npmjs.org/@aws-sdk/crc64-nvme/-/crc64-nvme-3.972.0.tgz", @@ -432,12 +420,12 @@ } }, "node_modules/@aws-sdk/credential-provider-env": { - "version": "3.972.7", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.7.tgz", - "integrity": "sha512-r8kBtglvLjGxBT87l6Lqkh9fL8yJJ6O4CYQPjKlj3AkCuL4/4784x3rxxXWw9LTKXOo114VB6mjxAuy5pI7XIg==", + "version": "3.972.8", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-env/-/credential-provider-env-3.972.8.tgz", + "integrity": "sha512-r91OOPAcHnLCSxaeu/lzZAVRCZ/CtTNuwmJkUwpwSDshUrP7bkX1OmFn2nUMWd9kN53Q4cEo8b7226G4olt2Mg==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/core": "^3.973.9", + "@aws-sdk/core": "^3.973.10", "@aws-sdk/types": "^3.973.1", "@smithy/property-provider": "^4.2.8", "@smithy/types": "^4.12.0", @@ -447,26 +435,13 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/credential-provider-env/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/credential-provider-http": { - "version": "3.972.9", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.9.tgz", - "integrity": "sha512-40caFblEg/TPrp9EpvyMxp4xlJ5TuTI+A8H6g8FhHn2hfH2PObFAPLF9d5AljK/G69E1YtTklkuQeAwPlV3w8Q==", + "version": "3.972.10", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-http/-/credential-provider-http-3.972.10.tgz", + "integrity": "sha512-DTtuyXSWB+KetzLcWaSahLJCtTUe/3SXtlGp4ik9PCe9xD6swHEkG8n8/BNsQ9dsihb9nhFvuUB4DpdBGDcvVg==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/core": "^3.973.9", + "@aws-sdk/core": "^3.973.10", "@aws-sdk/types": "^3.973.1", "@smithy/fetch-http-handler": "^5.3.9", "@smithy/node-http-handler": "^4.4.10", @@ -481,33 +456,20 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/credential-provider-http/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/credential-provider-ini": { - "version": "3.972.7", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.972.7.tgz", - "integrity": "sha512-zeYKrMwM5bCkHFho/x3+1OL0vcZQ0OhTR7k35tLq74+GP5ieV3juHXTZfa2LVE0Bg75cHIIerpX0gomVOhzo/w==", + "version": "3.972.8", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-ini/-/credential-provider-ini-3.972.8.tgz", + "integrity": "sha512-n2dMn21gvbBIEh00E8Nb+j01U/9rSqFIamWRdGm/mE5e+vHQ9g0cBNdrYFlM6AAiryKVHZmShWT9D1JAWJ3ISw==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/core": "^3.973.9", - "@aws-sdk/credential-provider-env": "^3.972.7", - "@aws-sdk/credential-provider-http": "^3.972.9", - "@aws-sdk/credential-provider-login": "^3.972.7", - "@aws-sdk/credential-provider-process": "^3.972.7", - "@aws-sdk/credential-provider-sso": "^3.972.7", - "@aws-sdk/credential-provider-web-identity": "^3.972.7", - "@aws-sdk/nested-clients": "3.989.0", + "@aws-sdk/core": "^3.973.10", + "@aws-sdk/credential-provider-env": "^3.972.8", + "@aws-sdk/credential-provider-http": "^3.972.10", + "@aws-sdk/credential-provider-login": "^3.972.8", + "@aws-sdk/credential-provider-process": "^3.972.8", + "@aws-sdk/credential-provider-sso": "^3.972.8", + "@aws-sdk/credential-provider-web-identity": "^3.972.8", + "@aws-sdk/nested-clients": "3.990.0", "@aws-sdk/types": "^3.973.1", "@smithy/credential-provider-imds": "^4.2.8", "@smithy/property-provider": "^4.2.8", @@ -519,27 +481,14 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/credential-provider-ini/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/credential-provider-login": { - "version": "3.972.7", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.7.tgz", - "integrity": "sha512-Q103cLU6OjAllYjX7+V+PKQw654jjvZUkD+lbUUiFbqut6gR5zwl1DrelvJPM5hnzIty7BCaxaRB3KMuz3M/ug==", + "version": "3.972.8", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-login/-/credential-provider-login-3.972.8.tgz", + "integrity": "sha512-rMFuVids8ICge/X9DF5pRdGMIvkVhDV9IQFQ8aTYk6iF0rl9jOUa1C3kjepxiXUlpgJQT++sLZkT9n0TMLHhQw==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/core": "^3.973.9", - "@aws-sdk/nested-clients": "3.989.0", + "@aws-sdk/core": "^3.973.10", + "@aws-sdk/nested-clients": "3.990.0", "@aws-sdk/types": "^3.973.1", "@smithy/property-provider": "^4.2.8", "@smithy/protocol-http": "^5.3.8", @@ -551,31 +500,18 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/credential-provider-login/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/credential-provider-node": { - "version": "3.972.8", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.8.tgz", - "integrity": "sha512-AaDVOT7iNJyLjc3j91VlucPZ4J8Bw+eu9sllRDugJqhHWYyR3Iyp2huBUW8A3+DfHoh70sxGkY92cThAicSzlQ==", + "version": "3.972.9", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-node/-/credential-provider-node-3.972.9.tgz", + "integrity": "sha512-LfJfO0ClRAq2WsSnA9JuUsNyIicD2eyputxSlSL0EiMrtxOxELLRG6ZVYDf/a1HCepaYPXeakH4y8D5OLCauag==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/credential-provider-env": "^3.972.7", - "@aws-sdk/credential-provider-http": "^3.972.9", - "@aws-sdk/credential-provider-ini": "^3.972.7", - "@aws-sdk/credential-provider-process": "^3.972.7", - "@aws-sdk/credential-provider-sso": "^3.972.7", - "@aws-sdk/credential-provider-web-identity": "^3.972.7", + "@aws-sdk/credential-provider-env": "^3.972.8", + "@aws-sdk/credential-provider-http": "^3.972.10", + "@aws-sdk/credential-provider-ini": "^3.972.8", + "@aws-sdk/credential-provider-process": "^3.972.8", + "@aws-sdk/credential-provider-sso": "^3.972.8", + "@aws-sdk/credential-provider-web-identity": "^3.972.8", "@aws-sdk/types": "^3.973.1", "@smithy/credential-provider-imds": "^4.2.8", "@smithy/property-provider": "^4.2.8", @@ -587,26 +523,13 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/credential-provider-node/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/credential-provider-process": { - "version": "3.972.7", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.7.tgz", - "integrity": "sha512-hxMo1V3ujWWrQSONxQJAElnjredkRpB6p8SDjnvRq70IwYY38R/CZSys0IbhRPxdgWZ5j12yDRk2OXhxw4Gj3g==", + "version": "3.972.8", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-process/-/credential-provider-process-3.972.8.tgz", + "integrity": "sha512-6cg26ffFltxM51OOS8NH7oE41EccaYiNlbd5VgUYwhiGCySLfHoGuGrLm2rMB4zhy+IO5nWIIG0HiodX8zdvHA==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/core": "^3.973.9", + "@aws-sdk/core": "^3.973.10", "@aws-sdk/types": "^3.973.1", "@smithy/property-provider": "^4.2.8", "@smithy/shared-ini-file-loader": "^4.4.3", @@ -617,28 +540,15 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/credential-provider-process/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/credential-provider-sso": { - "version": "3.972.7", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.972.7.tgz", - "integrity": "sha512-ZGKBOHEj8Ap15jhG2XMncQmKLTqA++2DVU2eZfLu3T/pkwDyhCp5eZv5c/acFxbZcA/6mtxke+vzO/n+aeHs4A==", + "version": "3.972.8", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-sso/-/credential-provider-sso-3.972.8.tgz", + "integrity": "sha512-35kqmFOVU1n26SNv+U37sM8b2TzG8LyqAcd6iM9gprqxyHEh/8IM3gzN4Jzufs3qM6IrH8e43ryZWYdvfVzzKQ==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/client-sso": "3.989.0", - "@aws-sdk/core": "^3.973.9", - "@aws-sdk/token-providers": "3.989.0", + "@aws-sdk/client-sso": "3.990.0", + "@aws-sdk/core": "^3.973.10", + "@aws-sdk/token-providers": "3.990.0", "@aws-sdk/types": "^3.973.1", "@smithy/property-provider": "^4.2.8", "@smithy/shared-ini-file-loader": "^4.4.3", @@ -649,27 +559,14 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/credential-provider-sso/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/credential-provider-web-identity": { - "version": "3.972.7", - "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.7.tgz", - "integrity": "sha512-AbYupBIoSJoVMlbMqBhNvPhqj+CdGtzW7Uk4ZIMBm2br18pc3rkG1VaKVFV85H87QCvLHEnni1idJjaX1wOmIw==", + "version": "3.972.8", + "resolved": "https://registry.npmjs.org/@aws-sdk/credential-provider-web-identity/-/credential-provider-web-identity-3.972.8.tgz", + "integrity": "sha512-CZhN1bOc1J3ubQPqbmr5b4KaMJBgdDvYsmEIZuX++wFlzmZsKj1bwkaiTEb5U2V7kXuzLlpF5HJSOM9eY/6nGA==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/core": "^3.973.9", - "@aws-sdk/nested-clients": "3.989.0", + "@aws-sdk/core": "^3.973.10", + "@aws-sdk/nested-clients": "3.990.0", "@aws-sdk/types": "^3.973.1", "@smithy/property-provider": "^4.2.8", "@smithy/shared-ini-file-loader": "^4.4.3", @@ -680,19 +577,6 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/credential-provider-web-identity/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/lib-storage": { "version": "3.975.0", "resolved": "https://registry.npmjs.org/@aws-sdk/lib-storage/-/lib-storage-3.975.0.tgz", @@ -714,6 +598,16 @@ "@aws-sdk/client-s3": "3.975.0" } }, + "node_modules/@aws-sdk/lib-storage/node_modules/buffer": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz", + "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==", + "license": "MIT", + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4" + } + }, "node_modules/@aws-sdk/middleware-bucket-endpoint": { "version": "3.972.3", "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-bucket-endpoint/-/middleware-bucket-endpoint-3.972.3.tgz", @@ -732,19 +626,6 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/middleware-bucket-endpoint/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/middleware-expect-continue": { "version": "3.972.3", "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-expect-continue/-/middleware-expect-continue-3.972.3.tgz", @@ -760,29 +641,16 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/middleware-expect-continue/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/middleware-flexible-checksums": { - "version": "3.972.7", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.972.7.tgz", - "integrity": "sha512-YU/5rpz8k2mwFGi2M0px9ChOQZY7Bbow5knB2WLRVPqDM/cG8T5zj55UaWS1qcaFpE7vCX9a9/kvYBlKGcD+KA==", + "version": "3.972.8", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-flexible-checksums/-/middleware-flexible-checksums-3.972.8.tgz", + "integrity": "sha512-Hn6gumcN/3/8Fzo9z7N1pA2PRfE8S+qAqdb4g3MqzXjIOIe+VxD7edO/DKAJ1YH11639EGQIHBz0wdOb5btjtw==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/crc32": "5.2.0", "@aws-crypto/crc32c": "5.2.0", "@aws-crypto/util": "5.2.0", - "@aws-sdk/core": "^3.973.9", + "@aws-sdk/core": "^3.973.10", "@aws-sdk/crc64-nvme": "3.972.0", "@aws-sdk/types": "^3.973.1", "@smithy/is-array-buffer": "^4.2.0", @@ -798,19 +666,6 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/middleware-flexible-checksums/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/middleware-host-header": { "version": "3.972.3", "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-host-header/-/middleware-host-header-3.972.3.tgz", @@ -826,19 +681,6 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/middleware-host-header/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/middleware-location-constraint": { "version": "3.972.3", "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-location-constraint/-/middleware-location-constraint-3.972.3.tgz", @@ -853,19 +695,6 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/middleware-location-constraint/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/middleware-logger": { "version": "3.972.3", "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-logger/-/middleware-logger-3.972.3.tgz", @@ -880,19 +709,6 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/middleware-logger/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/middleware-recursion-detection": { "version": "3.972.3", "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-recursion-detection/-/middleware-recursion-detection-3.972.3.tgz", @@ -909,26 +725,13 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/middleware-recursion-detection/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/middleware-sdk-s3": { - "version": "3.972.9", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.972.9.tgz", - "integrity": "sha512-F4Ak2HM7te/o3izFTqg/jUTBLjavpaJ5iynKM6aLMwNddXbwAZQ1VbIG8RFUHBo7fBHj2eeN2FNLtIFT4ejWYQ==", + "version": "3.972.10", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-sdk-s3/-/middleware-sdk-s3-3.972.10.tgz", + "integrity": "sha512-wLkB4bshbBtsAiC2WwlHzOWXu1fx3ftL63fQl0DxEda48Q6B8bcHydZppE3KjEIpPyiNOllByfSnb07cYpIgmw==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/core": "^3.973.9", + "@aws-sdk/core": "^3.973.10", "@aws-sdk/types": "^3.973.1", "@aws-sdk/util-arn-parser": "^3.972.2", "@smithy/core": "^3.23.0", @@ -947,19 +750,6 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/middleware-sdk-s3/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/middleware-ssec": { "version": "3.972.3", "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-ssec/-/middleware-ssec-3.972.3.tgz", @@ -974,28 +764,15 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/middleware-ssec/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/middleware-user-agent": { - "version": "3.972.9", - "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.972.9.tgz", - "integrity": "sha512-1g1B7yf7KzessB0mKNiV9gAHEwbM662xgU+VE4LxyGe6kVGZ8LqYsngjhE+Stna09CJ7Pxkjr6Uq1OtbGwJJJg==", + "version": "3.972.10", + "resolved": "https://registry.npmjs.org/@aws-sdk/middleware-user-agent/-/middleware-user-agent-3.972.10.tgz", + "integrity": "sha512-bBEL8CAqPQkI91ZM5a9xnFAzedpzH6NYCOtNyLarRAzTUTFN2DKqaC60ugBa7pnU1jSi4mA7WAXBsrod7nJltg==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/core": "^3.973.9", + "@aws-sdk/core": "^3.973.10", "@aws-sdk/types": "^3.973.1", - "@aws-sdk/util-endpoints": "3.989.0", + "@aws-sdk/util-endpoints": "3.990.0", "@smithy/core": "^3.23.0", "@smithy/protocol-http": "^5.3.8", "@smithy/types": "^4.12.0", @@ -1005,53 +782,24 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/middleware-user-agent/node_modules/@aws-sdk/util-endpoints": { - "version": "3.989.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.989.0.tgz", - "integrity": "sha512-eKmAOeQM4Qusq0jtcbZPiNWky8XaojByKC/n+THbJ8vJf7t4ys8LlcZ4PrBSHZISe9cC484mQsPVOQh6iySjqw==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/types": "^3.973.1", - "@smithy/types": "^4.12.0", - "@smithy/url-parser": "^4.2.8", - "@smithy/util-endpoints": "^3.2.8", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/nested-clients": { - "version": "3.989.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.989.0.tgz", - "integrity": "sha512-Dbk2HMPU3mb6RrSRzgf0WCaWSbgtZG258maCpuN2/ONcAQNpOTw99V5fU5CA1qVK6Vkm4Fwj2cnOnw7wbGVlOw==", + "version": "3.990.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/nested-clients/-/nested-clients-3.990.0.tgz", + "integrity": "sha512-3NA0s66vsy8g7hPh36ZsUgO4SiMyrhwcYvuuNK1PezO52vX3hXDW4pQrC6OQLGKGJV0o6tbEyQtXb/mPs8zg8w==", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-browser": "5.2.0", "@aws-crypto/sha256-js": "5.2.0", - "@aws-sdk/core": "^3.973.9", + "@aws-sdk/core": "^3.973.10", "@aws-sdk/middleware-host-header": "^3.972.3", "@aws-sdk/middleware-logger": "^3.972.3", "@aws-sdk/middleware-recursion-detection": "^3.972.3", - "@aws-sdk/middleware-user-agent": "^3.972.9", + "@aws-sdk/middleware-user-agent": "^3.972.10", "@aws-sdk/region-config-resolver": "^3.972.3", "@aws-sdk/types": "^3.973.1", - "@aws-sdk/util-endpoints": "3.989.0", + "@aws-sdk/util-endpoints": "3.990.0", "@aws-sdk/util-user-agent-browser": "^3.972.3", - "@aws-sdk/util-user-agent-node": "^3.972.7", + "@aws-sdk/util-user-agent-node": "^3.972.8", "@smithy/config-resolver": "^4.4.6", "@smithy/core": "^3.23.0", "@smithy/fetch-http-handler": "^5.3.9", @@ -1083,35 +831,6 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, - "node_modules/@aws-sdk/nested-clients/node_modules/@aws-sdk/util-endpoints": { - "version": "3.989.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.989.0.tgz", - "integrity": "sha512-eKmAOeQM4Qusq0jtcbZPiNWky8XaojByKC/n+THbJ8vJf7t4ys8LlcZ4PrBSHZISe9cC484mQsPVOQh6iySjqw==", - "license": "Apache-2.0", - "dependencies": { - "@aws-sdk/types": "^3.973.1", - "@smithy/types": "^4.12.0", - "@smithy/url-parser": "^4.2.8", - "@smithy/util-endpoints": "^3.2.8", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/region-config-resolver": { "version": "3.972.3", "resolved": "https://registry.npmjs.org/@aws-sdk/region-config-resolver/-/region-config-resolver-3.972.3.tgz", @@ -1128,19 +847,6 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/region-config-resolver/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/s3-request-presigner": { "version": "3.975.0", "resolved": "https://registry.npmjs.org/@aws-sdk/s3-request-presigner/-/s3-request-presigner-3.975.0.tgz", @@ -1284,13 +990,13 @@ } }, "node_modules/@aws-sdk/token-providers": { - "version": "3.989.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.989.0.tgz", - "integrity": "sha512-OdBByMv+OjOZoekrk4THPFpLuND5aIQbDHCGh3n2rvifAbm31+6e0OLhxSeCF1UMPm+nKq12bXYYEoCIx5SQBg==", + "version": "3.990.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/token-providers/-/token-providers-3.990.0.tgz", + "integrity": "sha512-L3BtUb2v9XmYgQdfGBzbBtKMXaP5fV973y3Qdxeevs6oUTVXFmi/mV1+LnScA/1wVPJC9/hlK+1o5vbt7cG7EQ==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/core": "^3.973.9", - "@aws-sdk/nested-clients": "3.989.0", + "@aws-sdk/core": "^3.973.10", + "@aws-sdk/nested-clients": "3.990.0", "@aws-sdk/types": "^3.973.1", "@smithy/property-provider": "^4.2.8", "@smithy/shared-ini-file-loader": "^4.4.3", @@ -1301,7 +1007,7 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/token-providers/node_modules/@aws-sdk/types": { + "node_modules/@aws-sdk/types": { "version": "3.973.1", "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", @@ -1314,19 +1020,6 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/types": { - "version": "3.973.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.0.tgz", - "integrity": "sha512-jYIdB7a7jhRTvyb378nsjyvJh1Si+zVduJ6urMNGpz8RjkmHZ+9vM2H07XaIB2Cfq0GhJRZYOfUCH8uqQhqBkQ==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/util-arn-parser": { "version": "3.972.2", "resolved": "https://registry.npmjs.org/@aws-sdk/util-arn-parser/-/util-arn-parser-3.972.2.tgz", @@ -1340,12 +1033,12 @@ } }, "node_modules/@aws-sdk/util-endpoints": { - "version": "3.972.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.972.0.tgz", - "integrity": "sha512-6JHsl1V/a1ZW8D8AFfd4R52fwZPnZ5H4U6DS8m/bWT8qad72NvbOFAC7U2cDtFs2TShqUO3TEiX/EJibtY3ijg==", + "version": "3.990.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-endpoints/-/util-endpoints-3.990.0.tgz", + "integrity": "sha512-kVwtDc9LNI3tQZHEMNbkLIOpeDK8sRSTuT8eMnzGY+O+JImPisfSTjdh+jw9OTznu+MYZjQsv0258sazVKunYg==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/types": "3.972.0", + "@aws-sdk/types": "^3.973.1", "@smithy/types": "^4.12.0", "@smithy/url-parser": "^4.2.8", "@smithy/util-endpoints": "^3.2.8", @@ -1355,19 +1048,6 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/util-endpoints/node_modules/@aws-sdk/types": { - "version": "3.972.0", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.972.0.tgz", - "integrity": "sha512-U7xBIbLSetONxb2bNzHyDgND3oKGoIfmknrEVnoEU4GUSs+0augUOIn9DIWGUO2ETcRFdsRUnmx9KhPT9Ojbug==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/util-format-url": { "version": "3.972.3", "resolved": "https://registry.npmjs.org/@aws-sdk/util-format-url/-/util-format-url-3.972.3.tgz", @@ -1383,19 +1063,6 @@ "node": ">=20.0.0" } }, - "node_modules/@aws-sdk/util-format-url/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/util-locate-window": { "version": "3.965.4", "resolved": "https://registry.npmjs.org/@aws-sdk/util-locate-window/-/util-locate-window-3.965.4.tgz", @@ -1420,26 +1087,13 @@ "tslib": "^2.6.2" } }, - "node_modules/@aws-sdk/util-user-agent-browser/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/util-user-agent-node": { - "version": "3.972.7", - "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.972.7.tgz", - "integrity": "sha512-oyhv+FjrgHjP+F16cmsrJzNP4qaRJzkV1n9Lvv4uyh3kLqo3rIe9NSBSBa35f2TedczfG2dD+kaQhHBB47D6Og==", + "version": "3.972.8", + "resolved": "https://registry.npmjs.org/@aws-sdk/util-user-agent-node/-/util-user-agent-node-3.972.8.tgz", + "integrity": "sha512-XJZuT0LWsFCW1C8dEpPAXSa7h6Pb3krr2y//1X0Zidpcl0vmgY5nL/X0JuBZlntpBzaN3+U4hvKjuijyiiR8zw==", "license": "Apache-2.0", "dependencies": { - "@aws-sdk/middleware-user-agent": "^3.972.9", + "@aws-sdk/middleware-user-agent": "^3.972.10", "@aws-sdk/types": "^3.973.1", "@smithy/node-config-provider": "^4.3.8", "@smithy/types": "^4.12.0", @@ -1457,19 +1111,6 @@ } } }, - "node_modules/@aws-sdk/util-user-agent-node/node_modules/@aws-sdk/types": { - "version": "3.973.1", - "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.1.tgz", - "integrity": "sha512-DwHBiMNOB468JiX6+i34c+THsKHErYUdNQ3HexeXZvVn4zouLjgaS4FejiGSi2HyBuzuyHg7SuOPmjSvoU9NRg==", - "license": "Apache-2.0", - "dependencies": { - "@smithy/types": "^4.12.0", - "tslib": "^2.6.2" - }, - "engines": { - "node": ">=20.0.0" - } - }, "node_modules/@aws-sdk/xml-builder": { "version": "3.972.4", "resolved": "https://registry.npmjs.org/@aws-sdk/xml-builder/-/xml-builder-3.972.4.tgz", @@ -1920,74 +1561,10 @@ "integrity": "sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==", "license": "MIT" }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.3.tgz", - "integrity": "sha512-yTgnwQpFVYfvvo4SvRFB0SwrW8YjOxEoT7wfMT7Ol5v7v5LDNvSGo67aExmxOb87nQNeWPVvaGBNfQ7BXcrZ9w==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.3.tgz", - "integrity": "sha512-bviJOLMgurLJtF1/mAoJLxDZDL6oU5/ztMHnJQRejbJrSc9FFu0QoUoFhvi6qSKJEw9y5oGyvr9fuDtzJ30rNQ==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.3.tgz", - "integrity": "sha512-c+ty9necz3zB1Y+d/N+mC6KVVkGUUOcm4ZmT5i/Fk5arOaY3i6CA3P5wo/7+XzV8cb4GrI/Zjp8NuOQ9Lfsosw==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.3.tgz", - "integrity": "sha512-JReHfYCRK3FVX4Ra+y5EBH1b9e16TV2OxrPAvzMsGeES0X2Ndm9ImQRI4Ket757vhc5XBOuGperw63upesclRw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.3.tgz", - "integrity": "sha512-U3fuQ0xNiAkXOmQ6w5dKpEvXQRSpHOnbw7gEfHCRXPeTKW9sBzVck6C5Yneb8LfJm0l6le4NQfkNPnWMSlTFUQ==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", + "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", "cpu": [ "arm64" ], @@ -2000,294 +1577,6 @@ "node": ">=12" } }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.3.tgz", - "integrity": "sha512-3m1CEB7F07s19wmaMNI2KANLcnaqryJxO1fXHUV5j1rWn+wMxdUYoPyO2TnAbfRZdi7ADRwJClmOwgT13qlP3Q==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.3.tgz", - "integrity": "sha512-fsNAAl5pU6wmKHq91cHWQT0Fz0vtyE1JauMzKotrwqIKAswwP5cpHUCxZNSTuA/JlqtScq20/5KZ+TxQdovU/g==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.3.tgz", - "integrity": "sha512-tci+UJ4zP5EGF4rp8XlZIdq1q1a/1h9XuronfxTMCNBslpCtmk97Q/5qqy1Mu4zIc0yswN/yP/BLX+NTUC1bXA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.3.tgz", - "integrity": "sha512-f6kz2QpSuyHHg01cDawj0vkyMwuIvN62UAguQfnNVzbge2uWLhA7TCXOn83DT0ZvyJmBI943MItgTovUob36SQ==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.3.tgz", - "integrity": "sha512-vvG6R5g5ieB4eCJBQevyDMb31LMHthLpXTc2IGkFnPWS/GzIFDnaYFp558O+XybTmYrVjxnryru7QRleJvmZ6Q==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.3.tgz", - "integrity": "sha512-HjCWhH7K96Na+66TacDLJmOI9R8iDWDDiqe17C7znGvvE4sW1ECt9ly0AJ3dJH62jHyVqW9xpxZEU1jKdt+29A==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.3.tgz", - "integrity": "sha512-BGpimEccmHBZRcAhdlRIxMp7x9PyJxUtj7apL2IuoG9VxvU/l/v1z015nFs7Si7tXUwEsvjc1rOJdZCn4QTU+Q==", - "cpu": [ - "loong64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.3.tgz", - "integrity": "sha512-5rMOWkp7FQGtAH3QJddP4w3s47iT20hwftqdm7b+loe95o8JU8ro3qZbhgMRy0VuFU0DizymF1pBKkn3YHWtsw==", - "cpu": [ - "mips64el" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.3.tgz", - "integrity": "sha512-h0zj1ldel89V5sjPLo5H1SyMzp4VrgN1tPkN29TmjvO1/r0MuMRwJxL8QY05SmfsZRs6TF0c/IDH3u7XYYmbAg==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.3.tgz", - "integrity": "sha512-dkAKcTsTJ+CRX6bnO17qDJbLoW37npd5gSNtSzjYQr0svghLJYGYB0NF1SNcU1vDcjXLYS5pO4qOW4YbFama4A==", - "cpu": [ - "riscv64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.3.tgz", - "integrity": "sha512-vnD1YUkovEdnZWEuMmy2X2JmzsHQqPpZElXx6dxENcIwTu+Cu5ERax6+Ke1QsE814Zf3c6rxCfwQdCTQ7tPuXA==", - "cpu": [ - "s390x" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.3.tgz", - "integrity": "sha512-IOXOIm9WaK7plL2gMhsWJd+l2bfrhfilv0uPTptoRoSb2p09RghhQQp9YY6ZJhk/kqmeRt6siRdMSLLwzuT0KQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.3.tgz", - "integrity": "sha512-uTgCwsvQ5+vCQnqM//EfDSuomo2LhdWhFPS8VL8xKf+PKTCrcT/2kPPoWMTs22aB63MLdGMJiE3f1PHvCDmUOw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.3.tgz", - "integrity": "sha512-vNAkR17Ub2MgEud2Wag/OE4HTSI6zlb291UYzHez/psiKarp0J8PKGDnAhMBcHFoOHMXHfExzmjMojJNbAStrQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.3.tgz", - "integrity": "sha512-W8H9jlGiSBomkgmouaRoTXo49j4w4Kfbl6I1bIdO/vT0+0u4f20ko3ELzV3hPI6XV6JNBVX+8BC+ajHkvffIJA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.3.tgz", - "integrity": "sha512-EjEomwyLSCg8Ag3LDILIqYCZAq/y3diJ04PnqGRgq8/4O3VNlXyMd54j/saShaN4h5o5mivOjAzmU6C3X4v0xw==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.3.tgz", - "integrity": "sha512-WGiE/GgbsEwR33++5rzjiYsKyHywE8QSZPF7Rfx9EBfK3Qn3xyR6IjyCr5Uk38Kg8fG4/2phN7sXp4NPWd3fcw==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.3.tgz", - "integrity": "sha512-xRxC0jaJWDLYvcUvjQmHCJSfMrgmUuvsoXgDeU/wTorQ1ngDdUBuFtgY3W1Pc5sprGAvZBtWdJX7RPg/iZZUqA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, "node_modules/@floating-ui/core": { "version": "1.7.4", "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.7.4.tgz", @@ -2592,6 +1881,18 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/@isaacs/fs-minipass": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz", + "integrity": "sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==", + "license": "ISC", + "dependencies": { + "minipass": "^7.0.4" + }, + "engines": { + "node": ">=18.0.0" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.13", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", @@ -2659,7 +1960,6 @@ "version": "12.0.2", "resolved": "https://registry.npmjs.org/@koa/router/-/router-12.0.2.tgz", "integrity": "sha512-sYcHglGKTxGF+hQ6x67xDfkE9o+NhVlRHBqq6gLywaMc6CojK/5vFZByphdonKinYlMLkEkacm+HEse9HzwgTA==", - "deprecated": "Please upgrade to v15 or higher. All reported bugs in this version are fixed in newer releases, dependencies have been updated, and security has been improved.", "license": "MIT", "dependencies": { "debug": "^4.3.4", @@ -2672,12 +1972,41 @@ "node": ">= 12" } }, + "node_modules/@koa/router/node_modules/http-errors": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.1.tgz", + "integrity": "sha512-4FbRdAX+bSdmo4AUFuS0WNiPz8NgFt+r8ThgNWmlrjQjt1Q7ZR9+zTlce2859x4KSXrwIsaeTqDoKQmtP8pLmQ==", + "license": "MIT", + "dependencies": { + "depd": "~2.0.0", + "inherits": "~2.0.4", + "setprototypeof": "~1.2.0", + "statuses": "~2.0.2", + "toidentifier": "~1.0.1" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/express" + } + }, "node_modules/@koa/router/node_modules/path-to-regexp": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.3.0.tgz", "integrity": "sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==", "license": "MIT" }, + "node_modules/@koa/router/node_modules/statuses": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", + "integrity": "sha512-DvEy55V3DB7uknRo+4iOGT5fP1slR8wQohVdknigZPMpMstaKJQWhwiYBACJE3Ul2pTnATihhBYnRhZQHGBiRw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, "node_modules/@lezer/common": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/@lezer/common/-/common-1.5.1.tgz", @@ -2903,6 +2232,15 @@ } } }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { + "version": "0.7.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", + "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 12" + } + }, "node_modules/@pnpm/config.env-replace": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", @@ -2971,78 +2309,45 @@ "node": ">=18" } }, - "node_modules/@puppeteer/browsers/node_modules/b4a": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.7.4.tgz", - "integrity": "sha512-u20zJLDaSWpxaZ+zaAkEIB2dZZ1o+DF4T/MRbmsvGp9nletHOyiai19OzX1fF8xUBYsO1bPXxODvcd0978pnug==", - "license": "Apache-2.0", - "peerDependencies": { - "react-native-b4a": "*" - }, - "peerDependenciesMeta": { - "react-native-b4a": { - "optional": true - } - } - }, - "node_modules/@puppeteer/browsers/node_modules/debug": { - "version": "4.4.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", - "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", - "license": "MIT", - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/@puppeteer/browsers/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "license": "MIT" - }, - "node_modules/@puppeteer/browsers/node_modules/semver": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", - "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "node_modules/@puppeteer/browsers/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "license": "ISC", - "bin": { - "semver": "bin/semver.js" + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": ">=10" + "node": ">=12" } }, - "node_modules/@puppeteer/browsers/node_modules/tar-fs": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.1.1.tgz", - "integrity": "sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==", + "node_modules/@puppeteer/browsers/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "license": "MIT", "dependencies": { - "pump": "^3.0.0", - "tar-stream": "^3.1.5" + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" }, - "optionalDependencies": { - "bare-fs": "^4.0.1", - "bare-path": "^3.0.0" + "engines": { + "node": ">=12" } }, - "node_modules/@puppeteer/browsers/node_modules/tar-stream": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", - "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", - "license": "MIT", - "dependencies": { - "b4a": "^1.6.4", - "fast-fifo": "^1.2.0", - "streamx": "^2.15.0" + "node_modules/@puppeteer/browsers/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "license": "ISC", + "engines": { + "node": ">=12" } }, "node_modules/@radix-ui/number": { @@ -3663,6 +2968,19 @@ } } }, + "node_modules/@radix-ui/react-popper/node_modules/@floating-ui/react-dom": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.7.tgz", + "integrity": "sha512-0tLRojf/1Go2JgEVm+3Frg9A3IW8bJgKgdO0BN5RkF//ufuz2joZM63Npau2ff3J6lUVYgDSNzNkR+aH3IVfjg==", + "license": "MIT", + "dependencies": { + "@floating-ui/dom": "^1.7.5" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, "node_modules/@radix-ui/react-portal": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.0.4.tgz", @@ -4297,32 +3615,6 @@ "node": ">=14.0.0" } }, - "node_modules/@rollup/rollup-android-arm-eabi": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.57.1.tgz", - "integrity": "sha512-A6ehUVSiSaaliTxai040ZpZ2zTevHYbvu/lDoeAteHI8QnaosIzm4qwtezfRg1jOYaUmnzLX1AOD6Z+UJjtifg==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, - "node_modules/@rollup/rollup-android-arm64": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.57.1.tgz", - "integrity": "sha512-dQaAddCY9YgkFHZcFNS/606Exo8vcLHwArFZ7vxXq4rigo2bb494/xKMMwRRQW6ug7Js6yXmBZhSBRuBvCCQ3w==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ] - }, "node_modules/@rollup/rollup-darwin-arm64": { "version": "4.57.1", "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.57.1.tgz", @@ -4336,292 +3628,6 @@ "darwin" ] }, - "node_modules/@rollup/rollup-darwin-x64": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.57.1.tgz", - "integrity": "sha512-Ji8g8ChVbKrhFtig5QBV7iMaJrGtpHelkB3lsaKzadFBe58gmjfGXAOfI5FV0lYMH8wiqsxKQ1C9B0YTRXVy4w==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ] - }, - "node_modules/@rollup/rollup-freebsd-arm64": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.57.1.tgz", - "integrity": "sha512-R+/WwhsjmwodAcz65guCGFRkMb4gKWTcIeLy60JJQbXrJ97BOXHxnkPFrP+YwFlaS0m+uWJTstrUA9o+UchFug==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ] - }, - "node_modules/@rollup/rollup-freebsd-x64": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.57.1.tgz", - "integrity": "sha512-IEQTCHeiTOnAUC3IDQdzRAGj3jOAYNr9kBguI7MQAAZK3caezRrg0GxAb6Hchg4lxdZEI5Oq3iov/w/hnFWY9Q==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ] - }, - "node_modules/@rollup/rollup-linux-arm-gnueabihf": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.57.1.tgz", - "integrity": "sha512-F8sWbhZ7tyuEfsmOxwc2giKDQzN3+kuBLPwwZGyVkLlKGdV1nvnNwYD0fKQ8+XS6hp9nY7B+ZeK01EBUE7aHaw==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm-musleabihf": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.57.1.tgz", - "integrity": "sha512-rGfNUfn0GIeXtBP1wL5MnzSj98+PZe/AXaGBCRmT0ts80lU5CATYGxXukeTX39XBKsxzFpEeK+Mrp9faXOlmrw==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-gnu": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.57.1.tgz", - "integrity": "sha512-MMtej3YHWeg/0klK2Qodf3yrNzz6CGjo2UntLvk2RSPlhzgLvYEB3frRvbEF2wRKh1Z2fDIg9KRPe1fawv7C+g==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-arm64-musl": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.57.1.tgz", - "integrity": "sha512-1a/qhaaOXhqXGpMFMET9VqwZakkljWHLmZOX48R0I/YLbhdxr1m4gtG1Hq7++VhVUmf+L3sTAf9op4JlhQ5u1Q==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-loong64-gnu": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.57.1.tgz", - "integrity": "sha512-QWO6RQTZ/cqYtJMtxhkRkidoNGXc7ERPbZN7dVW5SdURuLeVU7lwKMpo18XdcmpWYd0qsP1bwKPf7DNSUinhvA==", - "cpu": [ - "loong64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-loong64-musl": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.57.1.tgz", - "integrity": "sha512-xpObYIf+8gprgWaPP32xiN5RVTi/s5FCR+XMXSKmhfoJjrpRAjCuuqQXyxUa/eJTdAE6eJ+KDKaoEqjZQxh3Gw==", - "cpu": [ - "loong64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-ppc64-gnu": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.57.1.tgz", - "integrity": "sha512-4BrCgrpZo4hvzMDKRqEaW1zeecScDCR+2nZ86ATLhAoJ5FQ+lbHVD3ttKe74/c7tNT9c6F2viwB3ufwp01Oh2w==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-ppc64-musl": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.57.1.tgz", - "integrity": "sha512-NOlUuzesGauESAyEYFSe3QTUguL+lvrN1HtwEEsU2rOwdUDeTMJdO5dUYl/2hKf9jWydJrO9OL/XSSf65R5+Xw==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-gnu": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.57.1.tgz", - "integrity": "sha512-ptA88htVp0AwUUqhVghwDIKlvJMD/fmL/wrQj99PRHFRAG6Z5nbWoWG4o81Nt9FT+IuqUQi+L31ZKAFeJ5Is+A==", - "cpu": [ - "riscv64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-riscv64-musl": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.57.1.tgz", - "integrity": "sha512-S51t7aMMTNdmAMPpBg7OOsTdn4tySRQvklmL3RpDRyknk87+Sp3xaumlatU+ppQ+5raY7sSTcC2beGgvhENfuw==", - "cpu": [ - "riscv64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-s390x-gnu": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.57.1.tgz", - "integrity": "sha512-Bl00OFnVFkL82FHbEqy3k5CUCKH6OEJL54KCyx2oqsmZnFTR8IoNqBF+mjQVcRCT5sB6yOvK8A37LNm/kPJiZg==", - "cpu": [ - "s390x" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.57.1.tgz", - "integrity": "sha512-ABca4ceT4N+Tv/GtotnWAeXZUZuM/9AQyCyKYyKnpk4yoA7QIAuBt6Hkgpw8kActYlew2mvckXkvx0FfoInnLg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.57.1.tgz", - "integrity": "sha512-HFps0JeGtuOR2convgRRkHCekD7j+gdAuXM+/i6kGzQtFhlCtQkpwtNzkNj6QhCDp7DRJ7+qC/1Vg2jt5iSOFw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ] - }, - "node_modules/@rollup/rollup-openbsd-x64": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.57.1.tgz", - "integrity": "sha512-H+hXEv9gdVQuDTgnqD+SQffoWoc0Of59AStSzTEj/feWTBAnSfSD3+Dql1ZruJQxmykT/JVY0dE8Ka7z0DH1hw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ] - }, - "node_modules/@rollup/rollup-openharmony-arm64": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.57.1.tgz", - "integrity": "sha512-4wYoDpNg6o/oPximyc/NG+mYUejZrCU2q+2w6YZqrAs2UcNUChIZXjtafAiiZSUc7On8v5NyNj34Kzj/Ltk6dQ==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "openharmony" - ] - }, - "node_modules/@rollup/rollup-win32-arm64-msvc": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.57.1.tgz", - "integrity": "sha512-O54mtsV/6LW3P8qdTcamQmuC990HDfR71lo44oZMZlXU4tzLrbvTii87Ni9opq60ds0YzuAlEr/GNwuNluZyMQ==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-ia32-msvc": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.57.1.tgz", - "integrity": "sha512-P3dLS+IerxCT/7D2q2FYcRdWRl22dNbrbBEtxdWhXrfIMPP9lQhb5h4Du04mdl5Woq05jVCDPCMF7Ub0NAjIew==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-gnu": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.57.1.tgz", - "integrity": "sha512-VMBH2eOOaKGtIJYleXsi2B8CPVADrh+TyNxJ4mWPnKfLB/DBUmzW+5m1xUrcwWoMfSLagIRpjUFeW5CO5hyciQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, - "node_modules/@rollup/rollup-win32-x64-msvc": { - "version": "4.57.1", - "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.57.1.tgz", - "integrity": "sha512-mxRFDdHIWRxg3UfIIAwCm6NzvxG0jDX/wBN6KsQFTvKFqqg9vTrWUE68qEjHt19A5wwx5X5aUi2zuZT7YR0jrA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ] - }, "node_modules/@rushstack/node-core-library": { "version": "5.13.0", "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-5.13.0.tgz", @@ -4662,6 +3668,20 @@ "url": "https://github.com/sponsors/epoberezkin" } }, + "node_modules/@rushstack/node-core-library/node_modules/ajv-draft-04": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", + "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", + "license": "MIT", + "peerDependencies": { + "ajv": "^8.5.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, "node_modules/@rushstack/node-core-library/node_modules/ajv-formats": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz", @@ -4693,6 +3713,21 @@ "node": ">=14.14" } }, + "node_modules/@rushstack/node-core-library/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/@rushstack/terminal": { "version": "0.15.2", "resolved": "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.15.2.tgz", @@ -4711,21 +3746,6 @@ } } }, - "node_modules/@rushstack/terminal/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, "node_modules/@rushstack/ts-command-line": { "version": "4.23.7", "resolved": "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.23.7.tgz", @@ -4738,21 +3758,6 @@ "string-argv": "~0.3.1" } }, - "node_modules/@rushstack/ts-command-line/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/@rushstack/ts-command-line/node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "license": "BSD-3-Clause" - }, "node_modules/@simov/deep-extend": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/@simov/deep-extend/-/deep-extend-1.0.0.tgz", @@ -5604,6 +4609,1507 @@ } }, "node_modules/@strapi/admin": { + "version": "5.8.1", + "resolved": "https://registry.npmjs.org/@strapi/admin/-/admin-5.8.1.tgz", + "integrity": "sha512-Rb6MMOhyjzYJktG4T8CheAIaMHwc5zqMBRz7oSlwgR7Y8VJ7YiN+1sn4fGRD5r4K0+7MLK2CbsYy3piu42GZdw==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@casl/ability": "6.5.0", + "@internationalized/date": "3.5.4", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-toolbar": "1.0.4", + "@reduxjs/toolkit": "1.9.7", + "@strapi/design-system": "2.0.0-rc.14", + "@strapi/icons": "2.0.0-rc.14", + "@strapi/permissions": "5.8.1", + "@strapi/types": "5.8.1", + "@strapi/typescript-utils": "5.8.1", + "@strapi/utils": "5.8.1", + "@testing-library/dom": "10.1.0", + "@testing-library/react": "15.0.7", + "@testing-library/user-event": "14.5.2", + "axios": "1.7.4", + "bcryptjs": "2.4.3", + "boxen": "5.1.2", + "chalk": "^4.1.2", + "codemirror5": "npm:codemirror@^5.65.11", + "cross-env": "^7.0.3", + "date-fns": "2.30.0", + "execa": "5.1.1", + "fast-deep-equal": "3.1.3", + "formik": "2.4.5", + "fractional-indexing": "3.2.0", + "fs-extra": "11.2.0", + "highlight.js": "^10.4.1", + "immer": "9.0.21", + "inquirer": "8.2.5", + "invariant": "^2.2.4", + "is-localhost-ip": "2.0.0", + "jsonwebtoken": "9.0.0", + "koa": "2.15.2", + "koa-compose": "4.1.0", + "koa-passport": "6.0.0", + "koa-static": "5.0.0", + "koa2-ratelimit": "^1.1.3", + "lodash": "4.17.21", + "node-schedule": "2.1.1", + "ora": "5.4.1", + "p-map": "4.0.0", + "passport-local": "1.0.0", + "pluralize": "8.0.0", + "punycode": "2.3.1", + "qs": "6.11.1", + "react-dnd": "16.0.1", + "react-dnd-html5-backend": "16.0.1", + "react-intl": "6.6.2", + "react-is": "^18.2.0", + "react-query": "3.39.3", + "react-redux": "8.1.3", + "react-select": "5.8.0", + "react-window": "1.8.10", + "rimraf": "5.0.5", + "sanitize-html": "2.13.0", + "scheduler": "0.23.0", + "semver": "7.5.4", + "sift": "16.0.1", + "typescript": "5.3.2", + "use-context-selector": "1.4.1", + "yup": "0.32.9", + "zod": "^3.22.4" + }, + "engines": { + "node": ">=18.0.0 <=22.x.x", + "npm": ">=6.0.0" + }, + "peerDependencies": { + "@strapi/data-transfer": "^5.0.0", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0", + "react-router-dom": "^6.0.0", + "styled-components": "^6.0.0" + } + }, + "node_modules/@strapi/admin/node_modules/@testing-library/dom": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.1.0.tgz", + "integrity": "sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "5.3.0", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.5.0", + "pretty-format": "^27.0.2" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@strapi/admin/node_modules/@testing-library/user-event": { + "version": "14.5.2", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.5.2.tgz", + "integrity": "sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==", + "license": "MIT", + "engines": { + "node": ">=12", + "npm": ">=6" + }, + "peerDependencies": { + "@testing-library/dom": ">=7.21.4" + } + }, + "node_modules/@strapi/admin/node_modules/glob": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", + "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@strapi/admin/node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/@strapi/admin/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@strapi/admin/node_modules/rimraf": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.5.tgz", + "integrity": "sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==", + "license": "ISC", + "dependencies": { + "glob": "^10.3.7" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@strapi/admin/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@strapi/admin/node_modules/typescript": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.2.tgz", + "integrity": "sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==", + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/@strapi/cloud-cli": { + "version": "5.8.1", + "resolved": "https://registry.npmjs.org/@strapi/cloud-cli/-/cloud-cli-5.8.1.tgz", + "integrity": "sha512-T4Fz68B/bTcf+zK2hRJcR8oft9MUQR/YHEQGV/uIAXuAMW6jsdYE3eY84c9T0yns2qXoSOeefobIi7Wy3GM1zw==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@strapi/utils": "5.8.1", + "axios": "1.7.4", + "boxen": "5.1.2", + "chalk": "4.1.2", + "cli-progress": "3.12.0", + "commander": "8.3.0", + "eventsource": "2.0.2", + "fast-safe-stringify": "2.1.1", + "fs-extra": "11.2.0", + "inquirer": "8.2.5", + "jsonwebtoken": "9.0.0", + "jwks-rsa": "3.1.0", + "lodash": "4.17.21", + "minimatch": "9.0.3", + "open": "8.4.0", + "ora": "5.4.1", + "pkg-up": "3.1.0", + "tar": "6.2.1", + "xdg-app-paths": "8.3.0", + "yup": "0.32.9" + }, + "bin": { + "cloud-cli": "bin/index.js" + }, + "engines": { + "node": ">=18.0.0 <=22.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/cloud-cli/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@strapi/content-manager": { + "version": "5.8.1", + "resolved": "https://registry.npmjs.org/@strapi/content-manager/-/content-manager-5.8.1.tgz", + "integrity": "sha512-aaJKJ3sLDerFvztEOs6sfcvAu7b3bDuDbj5Of0v4iEeGY0vWqFm2TKA6EeTSqKWsVDsM/BFmmxDVsgYqddqxiA==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@radix-ui/react-toolbar": "1.0.4", + "@reduxjs/toolkit": "1.9.7", + "@sindresorhus/slugify": "1.1.0", + "@strapi/design-system": "2.0.0-rc.14", + "@strapi/icons": "2.0.0-rc.14", + "@strapi/types": "5.8.1", + "@strapi/utils": "5.8.1", + "codemirror5": "npm:codemirror@^5.65.11", + "date-fns": "2.30.0", + "fractional-indexing": "3.2.0", + "highlight.js": "^10.4.1", + "immer": "9.0.21", + "koa": "2.15.2", + "lodash": "4.17.21", + "markdown-it": "^12.3.2", + "markdown-it-abbr": "^1.0.4", + "markdown-it-container": "^3.0.0", + "markdown-it-deflist": "^2.1.0", + "markdown-it-emoji": "^2.0.0", + "markdown-it-footnote": "^3.0.3", + "markdown-it-ins": "^3.0.1", + "markdown-it-mark": "^3.0.1", + "markdown-it-sub": "^1.0.0", + "markdown-it-sup": "1.0.0", + "node-schedule": "2.1.1", + "prismjs": "^1.29.0", + "qs": "6.11.1", + "react-dnd": "16.0.1", + "react-dnd-html5-backend": "16.0.1", + "react-helmet": "^6.1.0", + "react-intl": "6.6.2", + "react-query": "3.39.3", + "react-redux": "8.1.3", + "react-window": "1.8.10", + "sanitize-html": "2.13.0", + "slate": "0.94.1", + "slate-history": "0.93.0", + "slate-react": "0.98.3", + "yup": "0.32.9" + }, + "engines": { + "node": ">=18.0.0 <=22.x.x", + "npm": ">=6.0.0" + }, + "peerDependencies": { + "@strapi/admin": "^5.0.0", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0", + "react-router-dom": "^6.0.0", + "styled-components": "^6.0.0" + } + }, + "node_modules/@strapi/content-releases": { + "version": "5.8.1", + "resolved": "https://registry.npmjs.org/@strapi/content-releases/-/content-releases-5.8.1.tgz", + "integrity": "sha512-PtL+EX/DHKlEEcRSQVtk6g81VlKY/EAQn54xm+4dXTuegO+AJuaBe28/XPvl4H70bN+wKpMhnDGc3roUSGgh0A==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@reduxjs/toolkit": "1.9.7", + "@strapi/database": "5.8.1", + "@strapi/design-system": "2.0.0-rc.14", + "@strapi/icons": "2.0.0-rc.14", + "@strapi/types": "5.8.1", + "@strapi/utils": "5.8.1", + "date-fns": "2.30.0", + "date-fns-tz": "2.0.1", + "formik": "2.4.5", + "lodash": "4.17.21", + "node-schedule": "2.1.1", + "qs": "6.11.1", + "react-intl": "6.6.2", + "react-redux": "8.1.3", + "yup": "0.32.9" + }, + "engines": { + "node": ">=18.0.0 <=22.x.x", + "npm": ">=6.0.0" + }, + "peerDependencies": { + "@strapi/admin": "^5.0.0", + "@strapi/content-manager": "^5.0.0", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0", + "react-router-dom": "^6.0.0", + "styled-components": "^6.0.0" + } + }, + "node_modules/@strapi/content-type-builder": { + "version": "5.8.1", + "resolved": "https://registry.npmjs.org/@strapi/content-type-builder/-/content-type-builder-5.8.1.tgz", + "integrity": "sha512-6lsLc9ouyyAxd0I9nclCEHv5FE7uwaO/zFSVCScfkFBzTCQIUnE5Ae0ln/GGBhkRb9/aylTU51wk57RO8XFJ/Q==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@reduxjs/toolkit": "1.9.7", + "@sindresorhus/slugify": "1.1.0", + "@strapi/design-system": "2.0.0-rc.14", + "@strapi/generators": "5.8.1", + "@strapi/icons": "2.0.0-rc.14", + "@strapi/utils": "5.8.1", + "date-fns": "2.30.0", + "fs-extra": "11.2.0", + "immer": "9.0.21", + "lodash": "4.17.21", + "pluralize": "8.0.0", + "qs": "6.11.1", + "react-intl": "6.6.2", + "react-redux": "8.1.3", + "yup": "0.32.9" + }, + "engines": { + "node": ">=18.0.0 <=22.x.x", + "npm": ">=6.0.0" + }, + "peerDependencies": { + "@strapi/admin": "^5.0.0", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0", + "react-router-dom": "^6.0.0", + "styled-components": "^6.0.0" + } + }, + "node_modules/@strapi/core": { + "version": "5.8.1", + "resolved": "https://registry.npmjs.org/@strapi/core/-/core-5.8.1.tgz", + "integrity": "sha512-JYHRGVfyJLHwwnXqt1TTQzarXIOwIF1dDBhyfC1sWdA+6edPP7pCxWN+BCTyTL1Jtqcl0FjqVJ+p+Rix+FYpGA==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@koa/cors": "5.0.0", + "@koa/router": "12.0.2", + "@paralleldrive/cuid2": "2.2.2", + "@strapi/admin": "5.8.1", + "@strapi/database": "5.8.1", + "@strapi/generators": "5.8.1", + "@strapi/logger": "5.8.1", + "@strapi/pack-up": "5.0.2", + "@strapi/permissions": "5.8.1", + "@strapi/types": "5.8.1", + "@strapi/typescript-utils": "5.8.1", + "@strapi/utils": "5.8.1", + "bcryptjs": "2.4.3", + "boxen": "5.1.2", + "chalk": "4.1.2", + "ci-info": "4.0.0", + "cli-table3": "0.6.2", + "commander": "8.3.0", + "configstore": "5.0.1", + "copyfiles": "2.4.1", + "debug": "4.3.4", + "delegates": "1.0.0", + "dotenv": "16.4.5", + "execa": "5.1.1", + "fs-extra": "11.2.0", + "glob": "10.3.10", + "global-agent": "3.0.0", + "http-errors": "2.0.0", + "inquirer": "8.2.5", + "is-docker": "2.2.1", + "koa": "2.15.2", + "koa-body": "6.0.1", + "koa-compose": "4.1.0", + "koa-compress": "5.1.1", + "koa-favicon": "2.1.0", + "koa-helmet": "7.0.2", + "koa-ip": "^2.1.3", + "koa-session": "6.4.0", + "koa-static": "5.0.0", + "lodash": "4.17.21", + "mime-types": "2.1.35", + "node-schedule": "2.1.1", + "open": "8.4.0", + "ora": "5.4.1", + "package-json": "7.0.0", + "pkg-up": "3.1.0", + "qs": "6.11.1", + "resolve.exports": "2.0.2", + "semver": "7.5.4", + "statuses": "2.0.1", + "typescript": "5.3.2", + "undici": "6.19.2", + "yup": "0.32.9" + }, + "engines": { + "node": ">=18.0.0 <=22.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/core/node_modules/ci-info": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.0.0.tgz", + "integrity": "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@strapi/core/node_modules/cli-table3": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.2.tgz", + "integrity": "sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==", + "license": "MIT", + "dependencies": { + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" + } + }, + "node_modules/@strapi/core/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@strapi/core/node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@strapi/core/node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@strapi/core/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@strapi/core/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" + }, + "node_modules/@strapi/core/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@strapi/core/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@strapi/core/node_modules/typescript": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.2.tgz", + "integrity": "sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==", + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/@strapi/data-transfer": { + "version": "5.36.1", + "resolved": "https://registry.npmjs.org/@strapi/data-transfer/-/data-transfer-5.36.1.tgz", + "integrity": "sha512-AciG8Ws6reGsII/Ykxc+y9Eu3UFvDAtPg/SCHA7p9m9LQI2+qRSGH1ehy4pKADWS9g98UOn++Zs+Bvfq5kMz8Q==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@strapi/logger": "5.36.1", + "@strapi/types": "5.36.1", + "@strapi/utils": "5.36.1", + "chalk": "4.1.2", + "cli-table3": "0.6.5", + "commander": "8.3.0", + "fs-extra": "11.2.0", + "inquirer": "8.2.5", + "lodash": "4.17.21", + "ora": "5.4.1", + "resolve-cwd": "3.0.0", + "semver": "7.5.4", + "stream-chain": "2.2.5", + "stream-json": "1.8.0", + "tar": "7.5.7", + "tar-stream": "2.2.0", + "ws": "8.17.1" + }, + "engines": { + "node": ">=20.0.0 <=24.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/data-transfer/node_modules/@casl/ability": { + "version": "6.7.5", + "resolved": "https://registry.npmjs.org/@casl/ability/-/ability-6.7.5.tgz", + "integrity": "sha512-NaOHPi9JMn8Kesh+GRkjNKAYkl4q8qMFAlqw7w2yrE+cBQZSbV9GkBGKvgzs3CdzEc5Yl1cn3JwDxxbBN5gjog==", + "license": "MIT", + "dependencies": { + "@ucast/mongo2js": "^1.3.0" + }, + "funding": { + "url": "https://github.com/stalniy/casl/blob/master/BACKERS.md" + } + }, + "node_modules/@strapi/data-transfer/node_modules/@strapi/database": { + "version": "5.36.1", + "resolved": "https://registry.npmjs.org/@strapi/database/-/database-5.36.1.tgz", + "integrity": "sha512-YbaNSCxHbhOZX1fmjy3RvW6llxCsBI72Ro3nvtnTmpeoF9GGg7k4tJQneCYwQvxYZFia9pHTo7vIAyEPVZOu/A==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@paralleldrive/cuid2": "2.2.2", + "@strapi/utils": "5.36.1", + "ajv": "8.16.0", + "date-fns": "2.30.0", + "debug": "4.3.4", + "fs-extra": "11.2.0", + "knex": "3.0.1", + "lodash": "4.17.21", + "semver": "7.5.4", + "umzug": "3.8.1" + }, + "engines": { + "node": ">=20.0.0 <=24.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/data-transfer/node_modules/@strapi/logger": { + "version": "5.36.1", + "resolved": "https://registry.npmjs.org/@strapi/logger/-/logger-5.36.1.tgz", + "integrity": "sha512-eDldAono5GumvpNvOtdZh7VvB1bXL6cQBeXdIvvBLb3qpZF9kTsZSQ2avUFpyNwbxpml2XhvUMSDNcuvmH9iQg==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "lodash": "4.17.23", + "winston": "3.10.0" + }, + "engines": { + "node": ">=20.0.0 <=24.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/data-transfer/node_modules/@strapi/logger/node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, + "node_modules/@strapi/data-transfer/node_modules/@strapi/permissions": { + "version": "5.36.1", + "resolved": "https://registry.npmjs.org/@strapi/permissions/-/permissions-5.36.1.tgz", + "integrity": "sha512-lIYvsUxJQNfl2pnAkBVuzRkFKQ7vHpta2qajp0xujVDzNST0MnZRDyV4p38pybvaCNtHGdoR8/12A1rnsmDU5w==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@casl/ability": "6.7.5", + "@strapi/utils": "5.36.1", + "lodash": "4.17.21", + "qs": "6.14.2", + "sift": "16.0.1" + }, + "engines": { + "node": ">=20.0.0 <=24.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/data-transfer/node_modules/@strapi/types": { + "version": "5.36.1", + "resolved": "https://registry.npmjs.org/@strapi/types/-/types-5.36.1.tgz", + "integrity": "sha512-pugJ5hKclvJIj5PH1/1NoZ7V4zLS8S8GgDOVzdx5cvtyP4YLqTD93WzVdPppzFcJj49Ii4JKCtfwXt+JzzzE+w==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@casl/ability": "6.7.5", + "@koa/cors": "5.0.0", + "@koa/router": "12.0.2", + "@strapi/database": "5.36.1", + "@strapi/logger": "5.36.1", + "@strapi/permissions": "5.36.1", + "@strapi/utils": "5.36.1", + "commander": "8.3.0", + "json-logic-js": "2.0.5", + "koa": "2.16.3", + "koa-body": "6.0.1", + "node-schedule": "2.1.1", + "typedoc": "0.25.10", + "typedoc-github-wiki-theme": "1.1.0", + "typedoc-plugin-markdown": "3.17.1", + "zod": "3.25.67" + }, + "engines": { + "node": ">=20.0.0 <=24.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/data-transfer/node_modules/@strapi/utils": { + "version": "5.36.1", + "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.36.1.tgz", + "integrity": "sha512-ad6B413JCG198BxMHt7oaKQ/7H2xgs0i5tQcR2W+MrPIVs0E7HEO7IJdzFV5pHzyAwOHWb0twKIfTRrceBnatw==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@sindresorhus/slugify": "1.1.0", + "date-fns": "2.30.0", + "execa": "5.1.1", + "http-errors": "2.0.0", + "lodash": "4.17.21", + "node-machine-id": "1.1.12", + "p-map": "4.0.0", + "preferred-pm": "3.1.3", + "yup": "0.32.9", + "zod": "3.25.67" + }, + "engines": { + "node": ">=20.0.0 <=24.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/data-transfer/node_modules/@strapi/utils/node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@strapi/data-transfer/node_modules/@strapi/utils/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@strapi/data-transfer/node_modules/ajv": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz", + "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@strapi/data-transfer/node_modules/chownr": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-3.0.0.tgz", + "integrity": "sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==", + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } + }, + "node_modules/@strapi/data-transfer/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@strapi/data-transfer/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@strapi/data-transfer/node_modules/koa": { + "version": "2.16.3", + "resolved": "https://registry.npmjs.org/koa/-/koa-2.16.3.tgz", + "integrity": "sha512-zPPuIt+ku1iCpFBRwseMcPYQ1cJL8l60rSmKeOuGfOXyE6YnTBmf2aEFNL2HQGrD0cPcLO/t+v9RTgC+fwEh/g==", + "license": "MIT", + "dependencies": { + "accepts": "^1.3.5", + "cache-content-type": "^1.0.0", + "content-disposition": "~0.5.2", + "content-type": "^1.0.4", + "cookies": "~0.9.0", + "debug": "^4.3.2", + "delegates": "^1.0.0", + "depd": "^2.0.0", + "destroy": "^1.0.4", + "encodeurl": "^1.0.2", + "escape-html": "^1.0.3", + "fresh": "~0.5.2", + "http-assert": "^1.3.0", + "http-errors": "^1.6.3", + "is-generator-function": "^1.0.7", + "koa-compose": "^4.1.0", + "koa-convert": "^2.0.0", + "on-finished": "^2.3.0", + "only": "~0.0.2", + "parseurl": "^1.3.2", + "statuses": "^1.5.0", + "type-is": "^1.6.16", + "vary": "^1.1.2" + }, + "engines": { + "node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4" + } + }, + "node_modules/@strapi/data-transfer/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@strapi/data-transfer/node_modules/minizlib": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-3.1.0.tgz", + "integrity": "sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==", + "license": "MIT", + "dependencies": { + "minipass": "^7.1.2" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@strapi/data-transfer/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" + }, + "node_modules/@strapi/data-transfer/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@strapi/data-transfer/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@strapi/data-transfer/node_modules/preferred-pm": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.1.3.tgz", + "integrity": "sha512-MkXsENfftWSRpzCzImcp4FRsCc3y1opwB73CfCNWyzMqArju2CrlMHlqB7VexKiPEOjGMbttv1r9fSCn5S610w==", + "license": "MIT", + "dependencies": { + "find-up": "^5.0.0", + "find-yarn-workspace-root2": "1.2.16", + "path-exists": "^4.0.0", + "which-pm": "2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@strapi/data-transfer/node_modules/qs": { + "version": "6.14.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz", + "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@strapi/data-transfer/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@strapi/data-transfer/node_modules/tar": { + "version": "7.5.7", + "resolved": "https://registry.npmjs.org/tar/-/tar-7.5.7.tgz", + "integrity": "sha512-fov56fJiRuThVFXD6o6/Q354S7pnWMJIVlDBYijsTNx6jKSE4pvrDTs6lUnmGvNyfJwFQQwWy3owKz1ucIhveQ==", + "deprecated": "Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/fs-minipass": "^4.0.0", + "chownr": "^3.0.0", + "minipass": "^7.1.2", + "minizlib": "^3.1.0", + "yallist": "^5.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@strapi/data-transfer/node_modules/yallist": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-5.0.0.tgz", + "integrity": "sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==", + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } + }, + "node_modules/@strapi/data-transfer/node_modules/zod": { + "version": "3.25.67", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.67.tgz", + "integrity": "sha512-idA2YXwpCdqUSKRCACDE6ItZD9TZzy3OZMtpfLoh6oPR47lipysRrJfjzMqFxQ3uJuUPyUeWe1r9vLH33xO/Qw==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/@strapi/database": { + "version": "5.8.1", + "resolved": "https://registry.npmjs.org/@strapi/database/-/database-5.8.1.tgz", + "integrity": "sha512-IifkQB08X06hSvO8eF+9JXMKN0hEpsqf24gg6niVoohMpX19CUN/eZe9naicCjeNfj8UrgSvkfYt3pzEtwVCVA==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@paralleldrive/cuid2": "2.2.2", + "@strapi/utils": "5.8.1", + "ajv": "8.16.0", + "date-fns": "2.30.0", + "debug": "4.3.4", + "fs-extra": "11.2.0", + "knex": "3.0.1", + "lodash": "4.17.21", + "semver": "7.5.4", + "umzug": "3.8.1" + }, + "engines": { + "node": ">=18.0.0 <=22.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/database/node_modules/ajv": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz", + "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@strapi/database/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/@strapi/database/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" + }, + "node_modules/@strapi/database/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@strapi/design-system": { + "version": "2.0.0-rc.14", + "resolved": "https://registry.npmjs.org/@strapi/design-system/-/design-system-2.0.0-rc.14.tgz", + "integrity": "sha512-zOtArGfAQmKO5qqRE0IlONfjR1JL2VL/KjV3hE++KSybOZgfhbdckN4svpNtJ6i2Pv+glm7nHdu9h6AHRBuujQ==", + "license": "MIT", + "dependencies": { + "@codemirror/lang-json": "6.0.1", + "@floating-ui/react-dom": "2.1.0", + "@internationalized/date": "3.5.4", + "@internationalized/number": "3.5.3", + "@radix-ui/react-accordion": "1.1.2", + "@radix-ui/react-alert-dialog": "1.0.5", + "@radix-ui/react-avatar": "1.0.4", + "@radix-ui/react-checkbox": "1.0.4", + "@radix-ui/react-dialog": "1.0.5", + "@radix-ui/react-dismissable-layer": "1.0.5", + "@radix-ui/react-dropdown-menu": "2.0.6", + "@radix-ui/react-focus-scope": "1.0.4", + "@radix-ui/react-popover": "1.0.7", + "@radix-ui/react-progress": "1.0.3", + "@radix-ui/react-radio-group": "1.1.3", + "@radix-ui/react-scroll-area": "1.0.5", + "@radix-ui/react-switch": "1.0.3", + "@radix-ui/react-tabs": "1.0.4", + "@radix-ui/react-tooltip": "1.0.7", + "@strapi/ui-primitives": "2.0.0-rc.14", + "@uiw/react-codemirror": "4.22.2", + "react-remove-scroll": "2.5.10" + }, + "peerDependencies": { + "@strapi/icons": "^2.0.0 || ^2.0.0-beta || ^2.0.0-alpha", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0", + "styled-components": "^6.0.0" + } + }, + "node_modules/@strapi/email": { + "version": "5.8.1", + "resolved": "https://registry.npmjs.org/@strapi/email/-/email-5.8.1.tgz", + "integrity": "sha512-haSBYSPRe2DrRAitrqksK1oFEiGhZOY6dhtJsWokyeV+q7I4QGTjA+AEdGSHd6tU0NtnMauMcTazqN/Uvu55MA==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@strapi/design-system": "2.0.0-rc.14", + "@strapi/icons": "2.0.0-rc.14", + "@strapi/provider-email-sendmail": "5.8.1", + "@strapi/utils": "5.8.1", + "lodash": "4.17.21", + "react-intl": "6.6.2", + "react-query": "3.39.3", + "yup": "0.32.9" + }, + "engines": { + "node": ">=18.0.0 <=22.x.x", + "npm": ">=6.0.0" + }, + "peerDependencies": { + "@strapi/admin": "^5.0.0", + "koa": "^2.15.2", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0", + "react-router-dom": "^6.0.0", + "styled-components": "^6.0.0" + } + }, + "node_modules/@strapi/generators": { + "version": "5.8.1", + "resolved": "https://registry.npmjs.org/@strapi/generators/-/generators-5.8.1.tgz", + "integrity": "sha512-tISZ9OoxemRjqZ+NwHi3cseHGxwj0tof6qsA576nl64LV1BO5qPDwTC/ZqzMXNuDrwkraVfUVbQXQWZ7WCV3zA==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@sindresorhus/slugify": "1.1.0", + "@strapi/typescript-utils": "5.8.1", + "@strapi/utils": "5.8.1", + "chalk": "4.1.2", + "copyfiles": "2.4.1", + "fs-extra": "11.2.0", + "node-plop": "0.26.3", + "plop": "4.0.1", + "pluralize": "8.0.0" + }, + "engines": { + "node": ">=18.0.0 <=22.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/i18n": { + "version": "5.8.1", + "resolved": "https://registry.npmjs.org/@strapi/i18n/-/i18n-5.8.1.tgz", + "integrity": "sha512-opbxJHM0Gq6sCCTMu+Mti9P5ovaAl/hvhIRCTKHkcXR1F3d9Bc7/q6ynL2ZvkOeLny+M5/99rI1DodESg/bnrg==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@reduxjs/toolkit": "1.9.7", + "@strapi/design-system": "2.0.0-rc.14", + "@strapi/icons": "2.0.0-rc.14", + "@strapi/utils": "5.8.1", + "lodash": "4.17.21", + "qs": "6.11.1", + "react-intl": "6.6.2", + "react-redux": "8.1.3", + "yup": "0.32.9" + }, + "engines": { + "node": ">=18.0.0 <=22.x.x", + "npm": ">=6.0.0" + }, + "peerDependencies": { + "@strapi/admin": "^5.0.0", + "@strapi/content-manager": "^5.0.0", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0", + "react-router-dom": "^6.0.0", + "styled-components": "^6.0.0" + } + }, + "node_modules/@strapi/icons": { + "version": "2.0.0-rc.14", + "resolved": "https://registry.npmjs.org/@strapi/icons/-/icons-2.0.0-rc.14.tgz", + "integrity": "sha512-6kamFHcsoFpffp96HmFGgpM8FDezwb86sJ4c3Ydp7+eTgtEsHd8yLekAQhpaWXd2ZsHwRDbLLR0Tu1orgvRVYg==", + "license": "MIT", + "peerDependencies": { + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0", + "styled-components": "^6.0.0" + } + }, + "node_modules/@strapi/logger": { + "version": "5.8.1", + "resolved": "https://registry.npmjs.org/@strapi/logger/-/logger-5.8.1.tgz", + "integrity": "sha512-tVaHUkXM75sHbnzPOJbg8kMO0Xuo2wOT7g/oRe/c/2ckeCki4mjA0637OYV1GibOq5SpEICF7DOv3JssYMdWIQ==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "lodash": "4.17.21", + "winston": "3.10.0" + }, + "engines": { + "node": ">=18.0.0 <=22.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/pack-up": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/@strapi/pack-up/-/pack-up-5.0.2.tgz", + "integrity": "sha512-DWicuAyjLjVCxL2FQeTF3keakfHmfKx2BuBhBXEhiSWv7wW05MlW9fQqpZBQMKdkcYuzGnKwryhZQwaOF2CoOQ==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@vitejs/plugin-react-swc": "3.7.0", + "boxen": "5.1.2", + "browserslist-to-esbuild": "1.2.0", + "chalk": "4.1.2", + "chokidar": "4.0.1", + "commander": "8.3.0", + "esbuild": "0.20.2", + "esbuild-register": "3.5.0", + "get-latest-version": "5.1.0", + "git-url-parse": "13.1.1", + "ini": "4.1.2", + "ora": "5.4.1", + "outdent": "0.8.0", + "pkg-up": "3.1.0", + "prettier": "3.3.3", + "prettier-plugin-packagejson": "2.5.2", + "prompts": "2.4.2", + "rxjs": "7.8.1", + "typescript": "5.4.4", + "vite": "5.4.8", + "yup": "0.32.9" + }, + "bin": { + "pack-up": "bin/pack-up.js" + }, + "engines": { + "node": ">=18.0.0 <=20.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/pack-up/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@strapi/pack-up/node_modules/@vitejs/plugin-react-swc": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.7.0.tgz", + "integrity": "sha512-yrknSb3Dci6svCd/qhHqhFPDSw0QtjumcqdKMoNNzmOl5lMXTTiqzjWtG4Qask2HdvvzaNgSunbQGet8/GrKdA==", + "license": "MIT", + "dependencies": { + "@swc/core": "^1.5.7" + }, + "peerDependencies": { + "vite": "^4 || ^5" + } + }, + "node_modules/@strapi/pack-up/node_modules/chokidar": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.1.tgz", + "integrity": "sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==", + "license": "MIT", + "dependencies": { + "readdirp": "^4.0.1" + }, + "engines": { + "node": ">= 14.16.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@strapi/pack-up/node_modules/git-url-parse": { + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-13.1.1.tgz", + "integrity": "sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==", + "license": "MIT", + "dependencies": { + "git-up": "^7.0.0" + } + }, + "node_modules/@strapi/pack-up/node_modules/ini": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.2.tgz", + "integrity": "sha512-AMB1mvwR1pyBFY/nSevUX6y8nJWS63/SzUKD3JyQn97s4xgIdgQPT75IRouIiBAN4yLQBUShNYVW0+UG25daCw==", + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@strapi/pack-up/node_modules/readdirp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", + "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", + "license": "MIT", + "engines": { + "node": ">= 14.18.0" + }, + "funding": { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + }, + "node_modules/@strapi/pack-up/node_modules/rxjs": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", + "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/@strapi/pack-up/node_modules/typescript": { + "version": "5.4.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.4.tgz", + "integrity": "sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==", + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/@strapi/pack-up/node_modules/vite": { + "version": "5.4.8", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.8.tgz", + "integrity": "sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==", + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/@strapi/pack-up/node_modules/vite/node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/@strapi/permissions": { + "version": "5.8.1", + "resolved": "https://registry.npmjs.org/@strapi/permissions/-/permissions-5.8.1.tgz", + "integrity": "sha512-b+zir9726x0P5PeXnYcYmyXOsir8VqvuDkOVyrbBxw7hJtMViCiUZNHIt9HFshfGkgR3lk8XhiCyZixZbsCJgA==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@casl/ability": "6.5.0", + "@strapi/utils": "5.8.1", + "lodash": "4.17.21", + "qs": "6.11.1", + "sift": "16.0.1" + }, + "engines": { + "node": ">=18.0.0 <=22.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/plugin-documentation": { + "version": "5.36.0", + "resolved": "https://registry.npmjs.org/@strapi/plugin-documentation/-/plugin-documentation-5.36.0.tgz", + "integrity": "sha512-bSocjTm58xboE/9iLWCiynAieGz0qpu288wSZHIx/thBNHO6KzqafoN90nutXTdnR5/CV3xwQVQJWscLFKFoHA==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@reduxjs/toolkit": "1.9.7", + "@strapi/admin": "5.36.0", + "@strapi/design-system": "2.1.2", + "@strapi/icons": "2.1.2", + "@strapi/utils": "5.36.0", + "bcryptjs": "2.4.3", + "cheerio": "^1.0.0", + "formik": "2.4.5", + "fs-extra": "11.2.0", + "immer": "9.0.21", + "koa-static": "^5.0.0", + "lodash": "4.17.23", + "path-to-regexp": "8.2.0", + "react-intl": "6.6.2", + "swagger-ui-dist": "4.19.0", + "yaml": "1.10.2", + "yup": "0.32.9" + }, + "engines": { + "node": ">=20.0.0 <=24.x.x", + "npm": ">=6.0.0" + }, + "peerDependencies": { + "@strapi/strapi": "^5.0.0", + "react": "^17.0.0 || ^18.0.0", + "react-dom": "^17.0.0 || ^18.0.0", + "react-router-dom": "^6.0.0", + "styled-components": "^6.0.0" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/@strapi/admin": { "version": "5.36.0", "resolved": "https://registry.npmjs.org/@strapi/admin/-/admin-5.36.0.tgz", "integrity": "sha512-kOl612kRyHdY9GdBgGic5NFfp3G59oEBRGZ+Am1iMztLYPx9Oyy47F51oeg4nzrg98BfCq7hJb+HIQJa24rHMw==", @@ -5686,1402 +6192,20 @@ "styled-components": "^6.0.0" } }, - "node_modules/@strapi/admin/node_modules/@strapi/design-system": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@strapi/design-system/-/design-system-2.1.2.tgz", - "integrity": "sha512-0EFhstDnQeXC2wuxKdyguo/7l1kswfXvBq/mZYguzisiAqJ0QhCRHPuoTgVkkB59npAZEY7jSFMTb20XKa8jIg==", - "license": "MIT", - "dependencies": { - "@codemirror/lang-json": "6.0.1", - "@floating-ui/react-dom": "2.1.0", - "@internationalized/date": "3.5.4", - "@internationalized/number": "3.5.3", - "@radix-ui/react-accordion": "1.1.2", - "@radix-ui/react-alert-dialog": "1.0.5", - "@radix-ui/react-avatar": "1.0.4", - "@radix-ui/react-checkbox": "1.0.4", - "@radix-ui/react-dialog": "1.0.5", - "@radix-ui/react-dismissable-layer": "1.0.5", - "@radix-ui/react-dropdown-menu": "2.0.6", - "@radix-ui/react-focus-guards": "1.0.1", - "@radix-ui/react-focus-scope": "1.0.4", - "@radix-ui/react-popover": "1.0.7", - "@radix-ui/react-progress": "1.0.3", - "@radix-ui/react-radio-group": "1.1.3", - "@radix-ui/react-scroll-area": "1.0.5", - "@radix-ui/react-switch": "1.0.3", - "@radix-ui/react-tabs": "1.0.4", - "@radix-ui/react-tooltip": "1.0.7", - "@radix-ui/react-use-callback-ref": "1.0.1", - "@strapi/ui-primitives": "2.1.2", - "@uiw/react-codemirror": "4.22.2", - "lodash": "4.17.21", - "react-remove-scroll": "2.5.10" - }, - "peerDependencies": { - "@strapi/icons": "^2.0.0 || ^2.0.0-beta || ^2.0.0-alpha", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0", - "styled-components": "^6.0.0" - } - }, - "node_modules/@strapi/admin/node_modules/@strapi/icons": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@strapi/icons/-/icons-2.1.2.tgz", - "integrity": "sha512-RnVKuhO8gCWbpIjIs0Qfm0rmOLUrvmCR33AHHClwi7L5i9UwTqVG8ajRPVGptG2dC5vA6JCigsVPAS6yXjUTHQ==", - "license": "MIT", - "peerDependencies": { - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0", - "styled-components": "^6.0.0" - } - }, - "node_modules/@strapi/admin/node_modules/@strapi/ui-primitives": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/@strapi/ui-primitives/-/ui-primitives-2.1.2.tgz", - "integrity": "sha512-9PLnqJjWBSFlWmZdz0zLcgOhda6tIF/6tu8ZoX7JudlAg9gv8KElEHR0ZbACuH/+b+8BBpQ5fU7rcnMJyK6lJg==", - "license": "MIT", - "dependencies": { - "@radix-ui/number": "1.0.1", - "@radix-ui/primitive": "1.0.1", - "@radix-ui/react-collection": "1.0.3", - "@radix-ui/react-compose-refs": "1.0.1", - "@radix-ui/react-context": "1.0.1", - "@radix-ui/react-direction": "1.0.1", - "@radix-ui/react-dismissable-layer": "1.0.5", - "@radix-ui/react-focus-guards": "1.0.1", - "@radix-ui/react-focus-scope": "1.0.4", - "@radix-ui/react-id": "1.0.1", - "@radix-ui/react-popper": "1.1.3", - "@radix-ui/react-portal": "1.0.4", - "@radix-ui/react-primitive": "1.0.3", - "@radix-ui/react-slot": "1.0.2", - "@radix-ui/react-use-controllable-state": "1.0.1", - "@radix-ui/react-use-layout-effect": "1.0.1", - "@radix-ui/react-use-previous": "1.0.1", - "@radix-ui/react-visually-hidden": "1.0.3", - "@tanstack/react-virtual": "^3.10.8", - "aria-hidden": "1.2.4", - "react-remove-scroll": "2.5.10" - }, - "peerDependencies": { - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0" - } - }, - "node_modules/@strapi/admin/node_modules/aria-hidden": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz", - "integrity": "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@strapi/admin/node_modules/lodash": { + "node_modules/@strapi/plugin-documentation/node_modules/@strapi/admin/node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "license": "MIT" }, - "node_modules/@strapi/admin/node_modules/typescript": { - "version": "5.4.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.4.tgz", - "integrity": "sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==", - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/@strapi/admin/node_modules/use-context-selector": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/use-context-selector/-/use-context-selector-1.4.1.tgz", - "integrity": "sha512-Io2ArvcRO+6MWIhkdfMFt+WKQX+Vb++W8DS2l03z/Vw/rz3BclKpM0ynr4LYGyU85Eke+Yx5oIhTY++QR0ZDoA==", - "license": "MIT", - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": "*", - "react-native": "*", - "scheduler": ">=0.19.0" - }, - "peerDependenciesMeta": { - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - } - } - }, - "node_modules/@strapi/cloud-cli": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/cloud-cli/-/cloud-cli-5.8.1.tgz", - "integrity": "sha512-T4Fz68B/bTcf+zK2hRJcR8oft9MUQR/YHEQGV/uIAXuAMW6jsdYE3eY84c9T0yns2qXoSOeefobIi7Wy3GM1zw==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@strapi/utils": "5.8.1", - "axios": "1.7.4", - "boxen": "5.1.2", - "chalk": "4.1.2", - "cli-progress": "3.12.0", - "commander": "8.3.0", - "eventsource": "2.0.2", - "fast-safe-stringify": "2.1.1", - "fs-extra": "11.2.0", - "inquirer": "8.2.5", - "jsonwebtoken": "9.0.0", - "jwks-rsa": "3.1.0", - "lodash": "4.17.21", - "minimatch": "9.0.3", - "open": "8.4.0", - "ora": "5.4.1", - "pkg-up": "3.1.0", - "tar": "6.2.1", - "xdg-app-paths": "8.3.0", - "yup": "0.32.9" - }, - "bin": { - "cloud-cli": "bin/index.js" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/cloud-cli/node_modules/@strapi/utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", - "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/cloud-cli/node_modules/axios": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.4.tgz", - "integrity": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==", - "license": "MIT", - "dependencies": { - "follow-redirects": "^1.15.6", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/@strapi/cloud-cli/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/@strapi/content-manager": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/content-manager/-/content-manager-5.8.1.tgz", - "integrity": "sha512-aaJKJ3sLDerFvztEOs6sfcvAu7b3bDuDbj5Of0v4iEeGY0vWqFm2TKA6EeTSqKWsVDsM/BFmmxDVsgYqddqxiA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@radix-ui/react-toolbar": "1.0.4", - "@reduxjs/toolkit": "1.9.7", - "@sindresorhus/slugify": "1.1.0", - "@strapi/design-system": "2.0.0-rc.14", - "@strapi/icons": "2.0.0-rc.14", - "@strapi/types": "5.8.1", - "@strapi/utils": "5.8.1", - "codemirror5": "npm:codemirror@^5.65.11", - "date-fns": "2.30.0", - "fractional-indexing": "3.2.0", - "highlight.js": "^10.4.1", - "immer": "9.0.21", - "koa": "2.15.2", - "lodash": "4.17.21", - "markdown-it": "^12.3.2", - "markdown-it-abbr": "^1.0.4", - "markdown-it-container": "^3.0.0", - "markdown-it-deflist": "^2.1.0", - "markdown-it-emoji": "^2.0.0", - "markdown-it-footnote": "^3.0.3", - "markdown-it-ins": "^3.0.1", - "markdown-it-mark": "^3.0.1", - "markdown-it-sub": "^1.0.0", - "markdown-it-sup": "1.0.0", - "node-schedule": "2.1.1", - "prismjs": "^1.29.0", - "qs": "6.11.1", - "react-dnd": "16.0.1", - "react-dnd-html5-backend": "16.0.1", - "react-helmet": "^6.1.0", - "react-intl": "6.6.2", - "react-query": "3.39.3", - "react-redux": "8.1.3", - "react-window": "1.8.10", - "sanitize-html": "2.13.0", - "slate": "0.94.1", - "slate-history": "0.93.0", - "slate-react": "0.98.3", - "yup": "0.32.9" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - }, - "peerDependencies": { - "@strapi/admin": "^5.0.0", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0", - "react-router-dom": "^6.0.0", - "styled-components": "^6.0.0" - } - }, - "node_modules/@strapi/content-manager/node_modules/@strapi/logger": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/logger/-/logger-5.8.1.tgz", - "integrity": "sha512-tVaHUkXM75sHbnzPOJbg8kMO0Xuo2wOT7g/oRe/c/2ckeCki4mjA0637OYV1GibOq5SpEICF7DOv3JssYMdWIQ==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "lodash": "4.17.21", - "winston": "3.10.0" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/content-manager/node_modules/@strapi/permissions": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/permissions/-/permissions-5.8.1.tgz", - "integrity": "sha512-b+zir9726x0P5PeXnYcYmyXOsir8VqvuDkOVyrbBxw7hJtMViCiUZNHIt9HFshfGkgR3lk8XhiCyZixZbsCJgA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@casl/ability": "6.5.0", - "@strapi/utils": "5.8.1", - "lodash": "4.17.21", - "qs": "6.11.1", - "sift": "16.0.1" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/content-manager/node_modules/@strapi/types": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/types/-/types-5.8.1.tgz", - "integrity": "sha512-Zs/O45UKB383SRMPaDisG3x2UP7rfO/dtTISGsGBTpt6YMVz7clnTiZxYRzc6qGHx7vbpCINI+loBOIxk5/PSw==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@casl/ability": "6.5.0", - "@koa/cors": "5.0.0", - "@koa/router": "12.0.2", - "@strapi/database": "5.8.1", - "@strapi/logger": "5.8.1", - "@strapi/permissions": "5.8.1", - "@strapi/utils": "5.8.1", - "commander": "8.3.0", - "koa": "2.15.2", - "koa-body": "6.0.1", - "node-schedule": "2.1.1", - "typedoc": "0.25.10", - "typedoc-github-wiki-theme": "1.1.0", - "typedoc-plugin-markdown": "3.17.1" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/content-manager/node_modules/@strapi/utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", - "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/content-manager/node_modules/koa": { - "version": "2.15.2", - "resolved": "https://registry.npmjs.org/koa/-/koa-2.15.2.tgz", - "integrity": "sha512-MXTeZH3M6AJ8ukW2QZ8wqO3Dcdfh2WRRmjCBkEP+NhKNCiqlO5RDqHmSnsyNrbRJrdjyvIGSJho4vQiWgQJSVA==", - "license": "MIT", - "dependencies": { - "accepts": "^1.3.5", - "cache-content-type": "^1.0.0", - "content-disposition": "~0.5.2", - "content-type": "^1.0.4", - "cookies": "~0.9.0", - "debug": "^4.3.2", - "delegates": "^1.0.0", - "depd": "^2.0.0", - "destroy": "^1.0.4", - "encodeurl": "^1.0.2", - "escape-html": "^1.0.3", - "fresh": "~0.5.2", - "http-assert": "^1.3.0", - "http-errors": "^1.6.3", - "is-generator-function": "^1.0.7", - "koa-compose": "^4.1.0", - "koa-convert": "^2.0.0", - "on-finished": "^2.3.0", - "only": "~0.0.2", - "parseurl": "^1.3.2", - "statuses": "^1.5.0", - "type-is": "^1.6.16", - "vary": "^1.1.2" - }, - "engines": { - "node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4" - } - }, - "node_modules/@strapi/content-manager/node_modules/koa/node_modules/http-errors": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", - "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", - "license": "MIT", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/content-manager/node_modules/koa/node_modules/http-errors/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/content-manager/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/@strapi/content-manager/node_modules/qs": { - "version": "6.11.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz", - "integrity": "sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==", - "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/@strapi/content-manager/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/content-releases": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/content-releases/-/content-releases-5.8.1.tgz", - "integrity": "sha512-PtL+EX/DHKlEEcRSQVtk6g81VlKY/EAQn54xm+4dXTuegO+AJuaBe28/XPvl4H70bN+wKpMhnDGc3roUSGgh0A==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@reduxjs/toolkit": "1.9.7", - "@strapi/database": "5.8.1", - "@strapi/design-system": "2.0.0-rc.14", - "@strapi/icons": "2.0.0-rc.14", - "@strapi/types": "5.8.1", - "@strapi/utils": "5.8.1", - "date-fns": "2.30.0", - "date-fns-tz": "2.0.1", - "formik": "2.4.5", - "lodash": "4.17.21", - "node-schedule": "2.1.1", - "qs": "6.11.1", - "react-intl": "6.6.2", - "react-redux": "8.1.3", - "yup": "0.32.9" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - }, - "peerDependencies": { - "@strapi/admin": "^5.0.0", - "@strapi/content-manager": "^5.0.0", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0", - "react-router-dom": "^6.0.0", - "styled-components": "^6.0.0" - } - }, - "node_modules/@strapi/content-releases/node_modules/@strapi/logger": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/logger/-/logger-5.8.1.tgz", - "integrity": "sha512-tVaHUkXM75sHbnzPOJbg8kMO0Xuo2wOT7g/oRe/c/2ckeCki4mjA0637OYV1GibOq5SpEICF7DOv3JssYMdWIQ==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "lodash": "4.17.21", - "winston": "3.10.0" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/content-releases/node_modules/@strapi/permissions": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/permissions/-/permissions-5.8.1.tgz", - "integrity": "sha512-b+zir9726x0P5PeXnYcYmyXOsir8VqvuDkOVyrbBxw7hJtMViCiUZNHIt9HFshfGkgR3lk8XhiCyZixZbsCJgA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@casl/ability": "6.5.0", - "@strapi/utils": "5.8.1", - "lodash": "4.17.21", - "qs": "6.11.1", - "sift": "16.0.1" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/content-releases/node_modules/@strapi/types": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/types/-/types-5.8.1.tgz", - "integrity": "sha512-Zs/O45UKB383SRMPaDisG3x2UP7rfO/dtTISGsGBTpt6YMVz7clnTiZxYRzc6qGHx7vbpCINI+loBOIxk5/PSw==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@casl/ability": "6.5.0", - "@koa/cors": "5.0.0", - "@koa/router": "12.0.2", - "@strapi/database": "5.8.1", - "@strapi/logger": "5.8.1", - "@strapi/permissions": "5.8.1", - "@strapi/utils": "5.8.1", - "commander": "8.3.0", - "koa": "2.15.2", - "koa-body": "6.0.1", - "node-schedule": "2.1.1", - "typedoc": "0.25.10", - "typedoc-github-wiki-theme": "1.1.0", - "typedoc-plugin-markdown": "3.17.1" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/content-releases/node_modules/@strapi/utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", - "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/content-releases/node_modules/koa": { - "version": "2.15.2", - "resolved": "https://registry.npmjs.org/koa/-/koa-2.15.2.tgz", - "integrity": "sha512-MXTeZH3M6AJ8ukW2QZ8wqO3Dcdfh2WRRmjCBkEP+NhKNCiqlO5RDqHmSnsyNrbRJrdjyvIGSJho4vQiWgQJSVA==", - "license": "MIT", - "dependencies": { - "accepts": "^1.3.5", - "cache-content-type": "^1.0.0", - "content-disposition": "~0.5.2", - "content-type": "^1.0.4", - "cookies": "~0.9.0", - "debug": "^4.3.2", - "delegates": "^1.0.0", - "depd": "^2.0.0", - "destroy": "^1.0.4", - "encodeurl": "^1.0.2", - "escape-html": "^1.0.3", - "fresh": "~0.5.2", - "http-assert": "^1.3.0", - "http-errors": "^1.6.3", - "is-generator-function": "^1.0.7", - "koa-compose": "^4.1.0", - "koa-convert": "^2.0.0", - "on-finished": "^2.3.0", - "only": "~0.0.2", - "parseurl": "^1.3.2", - "statuses": "^1.5.0", - "type-is": "^1.6.16", - "vary": "^1.1.2" - }, - "engines": { - "node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4" - } - }, - "node_modules/@strapi/content-releases/node_modules/koa/node_modules/http-errors": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", - "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", - "license": "MIT", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/content-releases/node_modules/koa/node_modules/http-errors/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/content-releases/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/@strapi/content-releases/node_modules/qs": { - "version": "6.11.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz", - "integrity": "sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==", - "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/@strapi/content-releases/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/content-type-builder": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/content-type-builder/-/content-type-builder-5.8.1.tgz", - "integrity": "sha512-6lsLc9ouyyAxd0I9nclCEHv5FE7uwaO/zFSVCScfkFBzTCQIUnE5Ae0ln/GGBhkRb9/aylTU51wk57RO8XFJ/Q==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@reduxjs/toolkit": "1.9.7", - "@sindresorhus/slugify": "1.1.0", - "@strapi/design-system": "2.0.0-rc.14", - "@strapi/generators": "5.8.1", - "@strapi/icons": "2.0.0-rc.14", - "@strapi/utils": "5.8.1", - "date-fns": "2.30.0", - "fs-extra": "11.2.0", - "immer": "9.0.21", - "lodash": "4.17.21", - "pluralize": "8.0.0", - "qs": "6.11.1", - "react-intl": "6.6.2", - "react-redux": "8.1.3", - "yup": "0.32.9" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - }, - "peerDependencies": { - "@strapi/admin": "^5.0.0", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0", - "react-router-dom": "^6.0.0", - "styled-components": "^6.0.0" - } - }, - "node_modules/@strapi/content-type-builder/node_modules/@strapi/utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", - "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/content-type-builder/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/@strapi/content-type-builder/node_modules/qs": { - "version": "6.11.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz", - "integrity": "sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==", - "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/@strapi/core": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/core/-/core-5.8.1.tgz", - "integrity": "sha512-JYHRGVfyJLHwwnXqt1TTQzarXIOwIF1dDBhyfC1sWdA+6edPP7pCxWN+BCTyTL1Jtqcl0FjqVJ+p+Rix+FYpGA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@koa/cors": "5.0.0", - "@koa/router": "12.0.2", - "@paralleldrive/cuid2": "2.2.2", - "@strapi/admin": "5.8.1", - "@strapi/database": "5.8.1", - "@strapi/generators": "5.8.1", - "@strapi/logger": "5.8.1", - "@strapi/pack-up": "5.0.2", - "@strapi/permissions": "5.8.1", - "@strapi/types": "5.8.1", - "@strapi/typescript-utils": "5.8.1", - "@strapi/utils": "5.8.1", - "bcryptjs": "2.4.3", - "boxen": "5.1.2", - "chalk": "4.1.2", - "ci-info": "4.0.0", - "cli-table3": "0.6.2", - "commander": "8.3.0", - "configstore": "5.0.1", - "copyfiles": "2.4.1", - "debug": "4.3.4", - "delegates": "1.0.0", - "dotenv": "16.4.5", - "execa": "5.1.1", - "fs-extra": "11.2.0", - "glob": "10.3.10", - "global-agent": "3.0.0", - "http-errors": "2.0.0", - "inquirer": "8.2.5", - "is-docker": "2.2.1", - "koa": "2.15.2", - "koa-body": "6.0.1", - "koa-compose": "4.1.0", - "koa-compress": "5.1.1", - "koa-favicon": "2.1.0", - "koa-helmet": "7.0.2", - "koa-ip": "^2.1.3", - "koa-session": "6.4.0", - "koa-static": "5.0.0", - "lodash": "4.17.21", - "mime-types": "2.1.35", - "node-schedule": "2.1.1", - "open": "8.4.0", - "ora": "5.4.1", - "package-json": "7.0.0", - "pkg-up": "3.1.0", - "qs": "6.11.1", - "resolve.exports": "2.0.2", - "semver": "7.5.4", - "statuses": "2.0.1", - "typescript": "5.3.2", - "undici": "6.19.2", - "yup": "0.32.9" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/core/node_modules/@strapi/admin": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/admin/-/admin-5.8.1.tgz", - "integrity": "sha512-Rb6MMOhyjzYJktG4T8CheAIaMHwc5zqMBRz7oSlwgR7Y8VJ7YiN+1sn4fGRD5r4K0+7MLK2CbsYy3piu42GZdw==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@casl/ability": "6.5.0", - "@internationalized/date": "3.5.4", - "@radix-ui/react-context": "1.0.1", - "@radix-ui/react-toolbar": "1.0.4", - "@reduxjs/toolkit": "1.9.7", - "@strapi/design-system": "2.0.0-rc.14", - "@strapi/icons": "2.0.0-rc.14", - "@strapi/permissions": "5.8.1", - "@strapi/types": "5.8.1", - "@strapi/typescript-utils": "5.8.1", - "@strapi/utils": "5.8.1", - "@testing-library/dom": "10.1.0", - "@testing-library/react": "15.0.7", - "@testing-library/user-event": "14.5.2", - "axios": "1.7.4", - "bcryptjs": "2.4.3", - "boxen": "5.1.2", - "chalk": "^4.1.2", - "codemirror5": "npm:codemirror@^5.65.11", - "cross-env": "^7.0.3", - "date-fns": "2.30.0", - "execa": "5.1.1", - "fast-deep-equal": "3.1.3", - "formik": "2.4.5", - "fractional-indexing": "3.2.0", - "fs-extra": "11.2.0", - "highlight.js": "^10.4.1", - "immer": "9.0.21", - "inquirer": "8.2.5", - "invariant": "^2.2.4", - "is-localhost-ip": "2.0.0", - "jsonwebtoken": "9.0.0", - "koa": "2.15.2", - "koa-compose": "4.1.0", - "koa-passport": "6.0.0", - "koa-static": "5.0.0", - "koa2-ratelimit": "^1.1.3", - "lodash": "4.17.21", - "node-schedule": "2.1.1", - "ora": "5.4.1", - "p-map": "4.0.0", - "passport-local": "1.0.0", - "pluralize": "8.0.0", - "punycode": "2.3.1", - "qs": "6.11.1", - "react-dnd": "16.0.1", - "react-dnd-html5-backend": "16.0.1", - "react-intl": "6.6.2", - "react-is": "^18.2.0", - "react-query": "3.39.3", - "react-redux": "8.1.3", - "react-select": "5.8.0", - "react-window": "1.8.10", - "rimraf": "5.0.5", - "sanitize-html": "2.13.0", - "scheduler": "0.23.0", - "semver": "7.5.4", - "sift": "16.0.1", - "typescript": "5.3.2", - "use-context-selector": "1.4.1", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - }, - "peerDependencies": { - "@strapi/data-transfer": "^5.0.0", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0", - "react-router-dom": "^6.0.0", - "styled-components": "^6.0.0" - } - }, - "node_modules/@strapi/core/node_modules/@strapi/admin/node_modules/use-context-selector": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/use-context-selector/-/use-context-selector-1.4.1.tgz", - "integrity": "sha512-Io2ArvcRO+6MWIhkdfMFt+WKQX+Vb++W8DS2l03z/Vw/rz3BclKpM0ynr4LYGyU85Eke+Yx5oIhTY++QR0ZDoA==", - "license": "MIT", - "peerDependencies": { - "react": ">=16.8.0", - "react-dom": "*", - "react-native": "*", - "scheduler": ">=0.19.0" - }, - "peerDependenciesMeta": { - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - } - } - }, - "node_modules/@strapi/core/node_modules/@strapi/logger": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/logger/-/logger-5.8.1.tgz", - "integrity": "sha512-tVaHUkXM75sHbnzPOJbg8kMO0Xuo2wOT7g/oRe/c/2ckeCki4mjA0637OYV1GibOq5SpEICF7DOv3JssYMdWIQ==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "lodash": "4.17.21", - "winston": "3.10.0" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/core/node_modules/@strapi/permissions": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/permissions/-/permissions-5.8.1.tgz", - "integrity": "sha512-b+zir9726x0P5PeXnYcYmyXOsir8VqvuDkOVyrbBxw7hJtMViCiUZNHIt9HFshfGkgR3lk8XhiCyZixZbsCJgA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@casl/ability": "6.5.0", - "@strapi/utils": "5.8.1", - "lodash": "4.17.21", - "qs": "6.11.1", - "sift": "16.0.1" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/core/node_modules/@strapi/types": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/types/-/types-5.8.1.tgz", - "integrity": "sha512-Zs/O45UKB383SRMPaDisG3x2UP7rfO/dtTISGsGBTpt6YMVz7clnTiZxYRzc6qGHx7vbpCINI+loBOIxk5/PSw==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@casl/ability": "6.5.0", - "@koa/cors": "5.0.0", - "@koa/router": "12.0.2", - "@strapi/database": "5.8.1", - "@strapi/logger": "5.8.1", - "@strapi/permissions": "5.8.1", - "@strapi/utils": "5.8.1", - "commander": "8.3.0", - "koa": "2.15.2", - "koa-body": "6.0.1", - "node-schedule": "2.1.1", - "typedoc": "0.25.10", - "typedoc-github-wiki-theme": "1.1.0", - "typedoc-plugin-markdown": "3.17.1" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/core/node_modules/@strapi/typescript-utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/typescript-utils/-/typescript-utils-5.8.1.tgz", - "integrity": "sha512-LORsREMH9mG/1EY5FVLHs+tKoYLZ+NTBqM4L2itpfhEPJLGPIO4nWvMbiKMlixd9oxMoTc8P3TN2JhM3L3hj6g==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "chalk": "4.1.2", - "cli-table3": "0.6.5", - "fs-extra": "11.2.0", - "lodash": "4.17.21", - "prettier": "3.3.3", - "typescript": "5.3.2" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/core/node_modules/@strapi/typescript-utils/node_modules/cli-table3": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", - "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", - "license": "MIT", - "dependencies": { - "string-width": "^4.2.0" - }, - "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" - } - }, - "node_modules/@strapi/core/node_modules/@strapi/utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", - "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/core/node_modules/@testing-library/dom": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.1.0.tgz", - "integrity": "sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^5.0.1", - "aria-query": "5.3.0", - "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.5.0", - "pretty-format": "^27.0.2" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/@strapi/core/node_modules/@testing-library/react": { - "version": "15.0.7", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-15.0.7.tgz", - "integrity": "sha512-cg0RvEdD1TIhhkm1IeYMQxrzy0MtUNfa3minv4MjbgcYzJAZ7yD0i0lwoPOTPr+INtiXFezt2o8xMSnyHhEn2Q==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.12.5", - "@testing-library/dom": "^10.0.0", - "@types/react-dom": "^18.0.0" - }, - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "@types/react": "^18.0.0", - "react": "^18.0.0", - "react-dom": "^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@strapi/core/node_modules/@testing-library/user-event": { - "version": "14.5.2", - "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.5.2.tgz", - "integrity": "sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==", - "license": "MIT", - "engines": { - "node": ">=12", - "npm": ">=6" - }, - "peerDependencies": { - "@testing-library/dom": ">=7.21.4" - } - }, - "node_modules/@strapi/core/node_modules/axios": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.4.tgz", - "integrity": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==", - "license": "MIT", - "dependencies": { - "follow-redirects": "^1.15.6", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/@strapi/core/node_modules/ci-info": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.0.0.tgz", - "integrity": "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/@strapi/core/node_modules/cli-table3": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.2.tgz", - "integrity": "sha512-QyavHCaIC80cMivimWu4aWHilIpiDpfm3hGmqAmXVL1UsnbLuBSMd21hTX6VY4ZSDSM73ESLeF8TOYId3rBTbw==", - "license": "MIT", - "dependencies": { - "string-width": "^4.2.0" - }, - "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" - } - }, - "node_modules/@strapi/core/node_modules/koa": { - "version": "2.15.2", - "resolved": "https://registry.npmjs.org/koa/-/koa-2.15.2.tgz", - "integrity": "sha512-MXTeZH3M6AJ8ukW2QZ8wqO3Dcdfh2WRRmjCBkEP+NhKNCiqlO5RDqHmSnsyNrbRJrdjyvIGSJho4vQiWgQJSVA==", - "license": "MIT", - "dependencies": { - "accepts": "^1.3.5", - "cache-content-type": "^1.0.0", - "content-disposition": "~0.5.2", - "content-type": "^1.0.4", - "cookies": "~0.9.0", - "debug": "^4.3.2", - "delegates": "^1.0.0", - "depd": "^2.0.0", - "destroy": "^1.0.4", - "encodeurl": "^1.0.2", - "escape-html": "^1.0.3", - "fresh": "~0.5.2", - "http-assert": "^1.3.0", - "http-errors": "^1.6.3", - "is-generator-function": "^1.0.7", - "koa-compose": "^4.1.0", - "koa-convert": "^2.0.0", - "on-finished": "^2.3.0", - "only": "~0.0.2", - "parseurl": "^1.3.2", - "statuses": "^1.5.0", - "type-is": "^1.6.16", - "vary": "^1.1.2" - }, - "engines": { - "node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4" - } - }, - "node_modules/@strapi/core/node_modules/koa/node_modules/http-errors": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", - "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", - "license": "MIT", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/core/node_modules/koa/node_modules/http-errors/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/core/node_modules/koa/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/core/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/@strapi/core/node_modules/qs": { - "version": "6.11.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz", - "integrity": "sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==", - "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/@strapi/core/node_modules/typescript": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.2.tgz", - "integrity": "sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==", - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/@strapi/data-transfer": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/data-transfer/-/data-transfer-5.8.1.tgz", - "integrity": "sha512-uIyYhoJOldzkAyeJi2tJ5JzWfTnHiVX79trLKZcZjyL357ipG3CUVhyoFOmy0xpNlBplq0v1RUGJ/GZBpNpkVA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@strapi/logger": "5.8.1", - "@strapi/types": "5.8.1", - "@strapi/utils": "5.8.1", - "chalk": "4.1.2", - "cli-table3": "0.6.5", - "commander": "8.3.0", - "fs-extra": "11.2.0", - "inquirer": "8.2.5", - "lodash": "4.17.21", - "ora": "5.4.1", - "resolve-cwd": "3.0.0", - "semver": "7.5.4", - "stream-chain": "2.2.5", - "stream-json": "1.8.0", - "tar": "6.2.1", - "tar-stream": "2.2.0", - "ws": "8.17.1" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/data-transfer/node_modules/@strapi/logger": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/logger/-/logger-5.8.1.tgz", - "integrity": "sha512-tVaHUkXM75sHbnzPOJbg8kMO0Xuo2wOT7g/oRe/c/2ckeCki4mjA0637OYV1GibOq5SpEICF7DOv3JssYMdWIQ==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "lodash": "4.17.21", - "winston": "3.10.0" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/data-transfer/node_modules/@strapi/permissions": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/permissions/-/permissions-5.8.1.tgz", - "integrity": "sha512-b+zir9726x0P5PeXnYcYmyXOsir8VqvuDkOVyrbBxw7hJtMViCiUZNHIt9HFshfGkgR3lk8XhiCyZixZbsCJgA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@casl/ability": "6.5.0", - "@strapi/utils": "5.8.1", - "lodash": "4.17.21", - "qs": "6.11.1", - "sift": "16.0.1" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/data-transfer/node_modules/@strapi/types": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/types/-/types-5.8.1.tgz", - "integrity": "sha512-Zs/O45UKB383SRMPaDisG3x2UP7rfO/dtTISGsGBTpt6YMVz7clnTiZxYRzc6qGHx7vbpCINI+loBOIxk5/PSw==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@casl/ability": "6.5.0", - "@koa/cors": "5.0.0", - "@koa/router": "12.0.2", - "@strapi/database": "5.8.1", - "@strapi/logger": "5.8.1", - "@strapi/permissions": "5.8.1", - "@strapi/utils": "5.8.1", - "commander": "8.3.0", - "koa": "2.15.2", - "koa-body": "6.0.1", - "node-schedule": "2.1.1", - "typedoc": "0.25.10", - "typedoc-github-wiki-theme": "1.1.0", - "typedoc-plugin-markdown": "3.17.1" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/data-transfer/node_modules/@strapi/utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", - "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/data-transfer/node_modules/koa": { - "version": "2.15.2", - "resolved": "https://registry.npmjs.org/koa/-/koa-2.15.2.tgz", - "integrity": "sha512-MXTeZH3M6AJ8ukW2QZ8wqO3Dcdfh2WRRmjCBkEP+NhKNCiqlO5RDqHmSnsyNrbRJrdjyvIGSJho4vQiWgQJSVA==", - "license": "MIT", - "dependencies": { - "accepts": "^1.3.5", - "cache-content-type": "^1.0.0", - "content-disposition": "~0.5.2", - "content-type": "^1.0.4", - "cookies": "~0.9.0", - "debug": "^4.3.2", - "delegates": "^1.0.0", - "depd": "^2.0.0", - "destroy": "^1.0.4", - "encodeurl": "^1.0.2", - "escape-html": "^1.0.3", - "fresh": "~0.5.2", - "http-assert": "^1.3.0", - "http-errors": "^1.6.3", - "is-generator-function": "^1.0.7", - "koa-compose": "^4.1.0", - "koa-convert": "^2.0.0", - "on-finished": "^2.3.0", - "only": "~0.0.2", - "parseurl": "^1.3.2", - "statuses": "^1.5.0", - "type-is": "^1.6.16", - "vary": "^1.1.2" - }, - "engines": { - "node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4" - } - }, - "node_modules/@strapi/data-transfer/node_modules/koa/node_modules/http-errors": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", - "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", - "license": "MIT", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/data-transfer/node_modules/koa/node_modules/http-errors/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/data-transfer/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/@strapi/data-transfer/node_modules/qs": { - "version": "6.11.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz", - "integrity": "sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==", - "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/@strapi/data-transfer/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/database": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/database/-/database-5.8.1.tgz", - "integrity": "sha512-IifkQB08X06hSvO8eF+9JXMKN0hEpsqf24gg6niVoohMpX19CUN/eZe9naicCjeNfj8UrgSvkfYt3pzEtwVCVA==", + "node_modules/@strapi/plugin-documentation/node_modules/@strapi/database": { + "version": "5.36.0", + "resolved": "https://registry.npmjs.org/@strapi/database/-/database-5.36.0.tgz", + "integrity": "sha512-bn1hHeIlGIjCnHtul+Szotz7BZHYC8ET8k1CZ8BL0WzaYhkCno0FsNssdOV70/u5ErzGDmjCvutWsDhMxLsn4Q==", "license": "SEE LICENSE IN LICENSE", "dependencies": { "@paralleldrive/cuid2": "2.2.2", - "@strapi/utils": "5.8.1", + "@strapi/utils": "5.36.0", "ajv": "8.16.0", "date-fns": "2.30.0", "debug": "4.3.4", @@ -7091,1336 +6215,34 @@ "semver": "7.5.4", "umzug": "3.8.1" }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/database/node_modules/@strapi/utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", - "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/database/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/@strapi/design-system": { - "version": "2.0.0-rc.14", - "resolved": "https://registry.npmjs.org/@strapi/design-system/-/design-system-2.0.0-rc.14.tgz", - "integrity": "sha512-zOtArGfAQmKO5qqRE0IlONfjR1JL2VL/KjV3hE++KSybOZgfhbdckN4svpNtJ6i2Pv+glm7nHdu9h6AHRBuujQ==", - "license": "MIT", - "dependencies": { - "@codemirror/lang-json": "6.0.1", - "@floating-ui/react-dom": "2.1.0", - "@internationalized/date": "3.5.4", - "@internationalized/number": "3.5.3", - "@radix-ui/react-accordion": "1.1.2", - "@radix-ui/react-alert-dialog": "1.0.5", - "@radix-ui/react-avatar": "1.0.4", - "@radix-ui/react-checkbox": "1.0.4", - "@radix-ui/react-dialog": "1.0.5", - "@radix-ui/react-dismissable-layer": "1.0.5", - "@radix-ui/react-dropdown-menu": "2.0.6", - "@radix-ui/react-focus-scope": "1.0.4", - "@radix-ui/react-popover": "1.0.7", - "@radix-ui/react-progress": "1.0.3", - "@radix-ui/react-radio-group": "1.1.3", - "@radix-ui/react-scroll-area": "1.0.5", - "@radix-ui/react-switch": "1.0.3", - "@radix-ui/react-tabs": "1.0.4", - "@radix-ui/react-tooltip": "1.0.7", - "@strapi/ui-primitives": "2.0.0-rc.14", - "@uiw/react-codemirror": "4.22.2", - "react-remove-scroll": "2.5.10" - }, - "peerDependencies": { - "@strapi/icons": "^2.0.0 || ^2.0.0-beta || ^2.0.0-alpha", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0", - "styled-components": "^6.0.0" - } - }, - "node_modules/@strapi/email": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/email/-/email-5.8.1.tgz", - "integrity": "sha512-haSBYSPRe2DrRAitrqksK1oFEiGhZOY6dhtJsWokyeV+q7I4QGTjA+AEdGSHd6tU0NtnMauMcTazqN/Uvu55MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@strapi/design-system": "2.0.0-rc.14", - "@strapi/icons": "2.0.0-rc.14", - "@strapi/provider-email-sendmail": "5.8.1", - "@strapi/utils": "5.8.1", - "lodash": "4.17.21", - "react-intl": "6.6.2", - "react-query": "3.39.3", - "yup": "0.32.9" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - }, - "peerDependencies": { - "@strapi/admin": "^5.0.0", - "koa": "^2.15.2", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0", - "react-router-dom": "^6.0.0", - "styled-components": "^6.0.0" - } - }, - "node_modules/@strapi/email/node_modules/@strapi/utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", - "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/email/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/@strapi/generators": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/generators/-/generators-5.8.1.tgz", - "integrity": "sha512-tISZ9OoxemRjqZ+NwHi3cseHGxwj0tof6qsA576nl64LV1BO5qPDwTC/ZqzMXNuDrwkraVfUVbQXQWZ7WCV3zA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "@strapi/typescript-utils": "5.8.1", - "@strapi/utils": "5.8.1", - "chalk": "4.1.2", - "copyfiles": "2.4.1", - "fs-extra": "11.2.0", - "node-plop": "0.26.3", - "plop": "4.0.1", - "pluralize": "8.0.0" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/generators/node_modules/@strapi/typescript-utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/typescript-utils/-/typescript-utils-5.8.1.tgz", - "integrity": "sha512-LORsREMH9mG/1EY5FVLHs+tKoYLZ+NTBqM4L2itpfhEPJLGPIO4nWvMbiKMlixd9oxMoTc8P3TN2JhM3L3hj6g==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "chalk": "4.1.2", - "cli-table3": "0.6.5", - "fs-extra": "11.2.0", - "lodash": "4.17.21", - "prettier": "3.3.3", - "typescript": "5.3.2" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/generators/node_modules/@strapi/utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", - "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/generators/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/@strapi/generators/node_modules/typescript": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.2.tgz", - "integrity": "sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==", - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/@strapi/i18n": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/i18n/-/i18n-5.8.1.tgz", - "integrity": "sha512-opbxJHM0Gq6sCCTMu+Mti9P5ovaAl/hvhIRCTKHkcXR1F3d9Bc7/q6ynL2ZvkOeLny+M5/99rI1DodESg/bnrg==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@reduxjs/toolkit": "1.9.7", - "@strapi/design-system": "2.0.0-rc.14", - "@strapi/icons": "2.0.0-rc.14", - "@strapi/utils": "5.8.1", - "lodash": "4.17.21", - "qs": "6.11.1", - "react-intl": "6.6.2", - "react-redux": "8.1.3", - "yup": "0.32.9" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - }, - "peerDependencies": { - "@strapi/admin": "^5.0.0", - "@strapi/content-manager": "^5.0.0", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0", - "react-router-dom": "^6.0.0", - "styled-components": "^6.0.0" - } - }, - "node_modules/@strapi/i18n/node_modules/@strapi/utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", - "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/i18n/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/@strapi/i18n/node_modules/qs": { - "version": "6.11.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz", - "integrity": "sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==", - "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/@strapi/icons": { - "version": "2.0.0-rc.14", - "resolved": "https://registry.npmjs.org/@strapi/icons/-/icons-2.0.0-rc.14.tgz", - "integrity": "sha512-6kamFHcsoFpffp96HmFGgpM8FDezwb86sJ4c3Ydp7+eTgtEsHd8yLekAQhpaWXd2ZsHwRDbLLR0Tu1orgvRVYg==", - "license": "MIT", - "peerDependencies": { - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0", - "styled-components": "^6.0.0" - } - }, - "node_modules/@strapi/logger": { - "version": "5.36.0", - "resolved": "https://registry.npmjs.org/@strapi/logger/-/logger-5.36.0.tgz", - "integrity": "sha512-wt2TtQ8eEuQ528x2DdBalm5IAlibjtIGsjSf3eEycH/7p8+bSlORocVVJJea/0vL9tjjZENzJ+Y/9n9JMHuMuQ==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "lodash": "4.17.23", - "winston": "3.10.0" - }, "engines": { "node": ">=20.0.0 <=24.x.x", "npm": ">=6.0.0" } }, - "node_modules/@strapi/pack-up": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/@strapi/pack-up/-/pack-up-5.0.2.tgz", - "integrity": "sha512-DWicuAyjLjVCxL2FQeTF3keakfHmfKx2BuBhBXEhiSWv7wW05MlW9fQqpZBQMKdkcYuzGnKwryhZQwaOF2CoOQ==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@vitejs/plugin-react-swc": "3.7.0", - "boxen": "5.1.2", - "browserslist-to-esbuild": "1.2.0", - "chalk": "4.1.2", - "chokidar": "4.0.1", - "commander": "8.3.0", - "esbuild": "0.20.2", - "esbuild-register": "3.5.0", - "get-latest-version": "5.1.0", - "git-url-parse": "13.1.1", - "ini": "4.1.2", - "ora": "5.4.1", - "outdent": "0.8.0", - "pkg-up": "3.1.0", - "prettier": "3.3.3", - "prettier-plugin-packagejson": "2.5.2", - "prompts": "2.4.2", - "rxjs": "7.8.1", - "typescript": "5.4.4", - "vite": "5.4.8", - "yup": "0.32.9" - }, - "bin": { - "pack-up": "bin/pack-up.js" - }, - "engines": { - "node": ">=18.0.0 <=20.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/aix-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", - "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/android-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", - "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/android-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", - "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/android-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", - "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/darwin-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", - "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/darwin-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", - "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/freebsd-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", - "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/freebsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", - "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/linux-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", - "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/linux-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", - "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/linux-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", - "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/linux-loong64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", - "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", - "cpu": [ - "loong64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/linux-mips64el": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", - "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", - "cpu": [ - "mips64el" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/linux-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", - "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/linux-riscv64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", - "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", - "cpu": [ - "riscv64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/linux-s390x": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", - "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", - "cpu": [ - "s390x" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/linux-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", - "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/netbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", - "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/openbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", - "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/sunos-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", - "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/win32-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", - "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/win32-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", - "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@esbuild/win32-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", - "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/@vitejs/plugin-react-swc": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.7.0.tgz", - "integrity": "sha512-yrknSb3Dci6svCd/qhHqhFPDSw0QtjumcqdKMoNNzmOl5lMXTTiqzjWtG4Qask2HdvvzaNgSunbQGet8/GrKdA==", + "node_modules/@strapi/plugin-documentation/node_modules/@strapi/database/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "license": "MIT", "dependencies": { - "@swc/core": "^1.5.7" - }, - "peerDependencies": { - "vite": "^4 || ^5" - } - }, - "node_modules/@strapi/pack-up/node_modules/chokidar": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-4.0.1.tgz", - "integrity": "sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==", - "license": "MIT", - "dependencies": { - "readdirp": "^4.0.1" + "ms": "2.1.2" }, "engines": { - "node": ">= 14.16.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - } - }, - "node_modules/@strapi/pack-up/node_modules/esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", - "hasInstallScript": true, - "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" - } - }, - "node_modules/@strapi/pack-up/node_modules/git-url-parse": { - "version": "13.1.1", - "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-13.1.1.tgz", - "integrity": "sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==", - "license": "MIT", - "dependencies": { - "git-up": "^7.0.0" - } - }, - "node_modules/@strapi/pack-up/node_modules/readdirp": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz", - "integrity": "sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==", - "license": "MIT", - "engines": { - "node": ">= 14.18.0" - }, - "funding": { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - }, - "node_modules/@strapi/pack-up/node_modules/typescript": { - "version": "5.4.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.4.tgz", - "integrity": "sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==", - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite": { - "version": "5.4.8", - "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.8.tgz", - "integrity": "sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==", - "license": "MIT", - "dependencies": { - "esbuild": "^0.21.3", - "postcss": "^8.4.43", - "rollup": "^4.20.0" - }, - "bin": { - "vite": "bin/vite.js" - }, - "engines": { - "node": "^18.0.0 || >=20.0.0" - }, - "funding": { - "url": "https://github.com/vitejs/vite?sponsor=1" - }, - "optionalDependencies": { - "fsevents": "~2.3.3" - }, - "peerDependencies": { - "@types/node": "^18.0.0 || >=20.0.0", - "less": "*", - "lightningcss": "^1.21.0", - "sass": "*", - "sass-embedded": "*", - "stylus": "*", - "sugarss": "*", - "terser": "^5.4.0" + "node": ">=6.0" }, "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "less": { - "optional": true - }, - "lightningcss": { - "optional": true - }, - "sass": { - "optional": true - }, - "sass-embedded": { - "optional": true - }, - "stylus": { - "optional": true - }, - "sugarss": { - "optional": true - }, - "terser": { + "supports-color": { "optional": true } } }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/aix-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", - "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/android-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", - "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/android-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", - "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/android-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", - "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/darwin-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", - "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/darwin-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", - "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/freebsd-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", - "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/freebsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", - "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/linux-arm": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", - "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/linux-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", - "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/linux-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", - "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/linux-loong64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", - "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", - "cpu": [ - "loong64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/linux-mips64el": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", - "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", - "cpu": [ - "mips64el" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/linux-ppc64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", - "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/linux-riscv64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", - "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", - "cpu": [ - "riscv64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/linux-s390x": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", - "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", - "cpu": [ - "s390x" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/linux-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", - "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/netbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", - "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/openbsd-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", - "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/sunos-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", - "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/win32-arm64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", - "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/win32-ia32": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", - "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/@esbuild/win32-x64": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", - "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@strapi/pack-up/node_modules/vite/node_modules/esbuild": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", - "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", - "hasInstallScript": true, - "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.21.5", - "@esbuild/android-arm": "0.21.5", - "@esbuild/android-arm64": "0.21.5", - "@esbuild/android-x64": "0.21.5", - "@esbuild/darwin-arm64": "0.21.5", - "@esbuild/darwin-x64": "0.21.5", - "@esbuild/freebsd-arm64": "0.21.5", - "@esbuild/freebsd-x64": "0.21.5", - "@esbuild/linux-arm": "0.21.5", - "@esbuild/linux-arm64": "0.21.5", - "@esbuild/linux-ia32": "0.21.5", - "@esbuild/linux-loong64": "0.21.5", - "@esbuild/linux-mips64el": "0.21.5", - "@esbuild/linux-ppc64": "0.21.5", - "@esbuild/linux-riscv64": "0.21.5", - "@esbuild/linux-s390x": "0.21.5", - "@esbuild/linux-x64": "0.21.5", - "@esbuild/netbsd-x64": "0.21.5", - "@esbuild/openbsd-x64": "0.21.5", - "@esbuild/sunos-x64": "0.21.5", - "@esbuild/win32-arm64": "0.21.5", - "@esbuild/win32-ia32": "0.21.5", - "@esbuild/win32-x64": "0.21.5" - } - }, - "node_modules/@strapi/permissions": { - "version": "5.36.0", - "resolved": "https://registry.npmjs.org/@strapi/permissions/-/permissions-5.36.0.tgz", - "integrity": "sha512-EkvJI8X0zhY7Yh3RQ8MPUTxhiFrXUj10qHaBBYJBLSMqLf2/vQS7IJrGq+VDX5kGfvr3Dzz4J0qFlazAUq/U2w==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@casl/ability": "6.5.0", - "@strapi/utils": "5.36.0", - "lodash": "4.17.21", - "qs": "6.14.1", - "sift": "16.0.1" - }, - "engines": { - "node": ">=20.0.0 <=24.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/permissions/node_modules/lodash": { + "node_modules/@strapi/plugin-documentation/node_modules/@strapi/database/node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "license": "MIT" }, - "node_modules/@strapi/plugin-documentation": { - "version": "5.36.0", - "resolved": "https://registry.npmjs.org/@strapi/plugin-documentation/-/plugin-documentation-5.36.0.tgz", - "integrity": "sha512-bSocjTm58xboE/9iLWCiynAieGz0qpu288wSZHIx/thBNHO6KzqafoN90nutXTdnR5/CV3xwQVQJWscLFKFoHA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@reduxjs/toolkit": "1.9.7", - "@strapi/admin": "5.36.0", - "@strapi/design-system": "2.1.2", - "@strapi/icons": "2.1.2", - "@strapi/utils": "5.36.0", - "bcryptjs": "2.4.3", - "cheerio": "^1.0.0", - "formik": "2.4.5", - "fs-extra": "11.2.0", - "immer": "9.0.21", - "koa-static": "^5.0.0", - "lodash": "4.17.23", - "path-to-regexp": "8.2.0", - "react-intl": "6.6.2", - "swagger-ui-dist": "4.19.0", - "yaml": "1.10.2", - "yup": "0.32.9" - }, - "engines": { - "node": ">=20.0.0 <=24.x.x", - "npm": ">=6.0.0" - }, - "peerDependencies": { - "@strapi/strapi": "^5.0.0", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0", - "react-router-dom": "^6.0.0", - "styled-components": "^6.0.0" - } - }, "node_modules/@strapi/plugin-documentation/node_modules/@strapi/design-system": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/@strapi/design-system/-/design-system-2.1.2.tgz", @@ -8477,6 +6299,89 @@ "styled-components": "^6.0.0" } }, + "node_modules/@strapi/plugin-documentation/node_modules/@strapi/logger": { + "version": "5.36.0", + "resolved": "https://registry.npmjs.org/@strapi/logger/-/logger-5.36.0.tgz", + "integrity": "sha512-wt2TtQ8eEuQ528x2DdBalm5IAlibjtIGsjSf3eEycH/7p8+bSlORocVVJJea/0vL9tjjZENzJ+Y/9n9JMHuMuQ==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "lodash": "4.17.23", + "winston": "3.10.0" + }, + "engines": { + "node": ">=20.0.0 <=24.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/@strapi/permissions": { + "version": "5.36.0", + "resolved": "https://registry.npmjs.org/@strapi/permissions/-/permissions-5.36.0.tgz", + "integrity": "sha512-EkvJI8X0zhY7Yh3RQ8MPUTxhiFrXUj10qHaBBYJBLSMqLf2/vQS7IJrGq+VDX5kGfvr3Dzz4J0qFlazAUq/U2w==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@casl/ability": "6.5.0", + "@strapi/utils": "5.36.0", + "lodash": "4.17.21", + "qs": "6.14.1", + "sift": "16.0.1" + }, + "engines": { + "node": ">=20.0.0 <=24.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/@strapi/permissions/node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/@strapi/plugin-documentation/node_modules/@strapi/types": { + "version": "5.36.0", + "resolved": "https://registry.npmjs.org/@strapi/types/-/types-5.36.0.tgz", + "integrity": "sha512-UlwzWvKaJm0xryUNdweQokNIwfTxIpjaWAI7J26JIV5nv/YaEInTBrjA4grrwubYC3CZeogz+2TntxKdyHAzJA==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@casl/ability": "6.5.0", + "@koa/cors": "5.0.0", + "@koa/router": "12.0.2", + "@strapi/database": "5.36.0", + "@strapi/logger": "5.36.0", + "@strapi/permissions": "5.36.0", + "@strapi/utils": "5.36.0", + "commander": "8.3.0", + "json-logic-js": "2.0.5", + "koa": "2.16.3", + "koa-body": "6.0.1", + "node-schedule": "2.1.1", + "typedoc": "0.25.10", + "typedoc-github-wiki-theme": "1.1.0", + "typedoc-plugin-markdown": "3.17.1", + "zod": "3.25.67" + }, + "engines": { + "node": ">=20.0.0 <=24.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/@strapi/typescript-utils": { + "version": "5.36.0", + "resolved": "https://registry.npmjs.org/@strapi/typescript-utils/-/typescript-utils-5.36.0.tgz", + "integrity": "sha512-pPLZqziZ5MbncsNdusWrQGGybijXkMM6mhh2yoWj6gOwoZ93+1uYauP3PlrzMeMkznmivw5RHB9vmF/k+kYKpg==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "chalk": "4.1.2", + "cli-table3": "0.6.5", + "fs-extra": "11.2.0", + "lodash": "4.17.23", + "prettier": "3.3.3", + "typescript": "5.4.4" + }, + "engines": { + "node": ">=20.0.0 <=24.x.x", + "npm": ">=6.0.0" + } + }, "node_modules/@strapi/plugin-documentation/node_modules/@strapi/ui-primitives": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/@strapi/ui-primitives/-/ui-primitives-2.1.2.tgz", @@ -8510,6 +6415,77 @@ "react-dom": "^17.0.0 || ^18.0.0" } }, + "node_modules/@strapi/plugin-documentation/node_modules/@strapi/utils": { + "version": "5.36.0", + "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.36.0.tgz", + "integrity": "sha512-/2cNbboWZolwz6UI5MwrDc3f8hbBqbtdk+sjATR488ugedG1XQdlLWlYVUzWW/kK42bqqFwgJvRyroBUveWIrg==", + "license": "SEE LICENSE IN LICENSE", + "dependencies": { + "@sindresorhus/slugify": "1.1.0", + "date-fns": "2.30.0", + "execa": "5.1.1", + "http-errors": "2.0.0", + "lodash": "4.17.21", + "node-machine-id": "1.1.12", + "p-map": "4.0.0", + "preferred-pm": "3.1.2", + "yup": "0.32.9", + "zod": "3.25.67" + }, + "engines": { + "node": ">=20.0.0 <=24.x.x", + "npm": ">=6.0.0" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/@strapi/utils/node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/@strapi/plugin-documentation/node_modules/@testing-library/react": { + "version": "16.3.0", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-16.3.0.tgz", + "integrity": "sha512-kFSyxiEDwv1WLl2fgsq6pPBbw5aWKrsY2/noi1Id0TK0UParSF62oFQFGHXIyaG4pp2tEub/Zlel+fjjZILDsw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "@testing-library/dom": "^10.0.0", + "@types/react": "^18.0.0 || ^19.0.0", + "@types/react-dom": "^18.0.0 || ^19.0.0", + "react": "^18.0.0 || ^19.0.0", + "react-dom": "^18.0.0 || ^19.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/ajv": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz", + "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.4.1" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, "node_modules/@strapi/plugin-documentation/node_modules/aria-hidden": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz", @@ -8522,6 +6498,242 @@ "node": ">=10" } }, + "node_modules/@strapi/plugin-documentation/node_modules/axios": { + "version": "1.12.2", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.12.2.tgz", + "integrity": "sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.4", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/glob": { + "version": "10.5.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.5.0.tgz", + "integrity": "sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/koa": { + "version": "2.16.3", + "resolved": "https://registry.npmjs.org/koa/-/koa-2.16.3.tgz", + "integrity": "sha512-zPPuIt+ku1iCpFBRwseMcPYQ1cJL8l60rSmKeOuGfOXyE6YnTBmf2aEFNL2HQGrD0cPcLO/t+v9RTgC+fwEh/g==", + "license": "MIT", + "dependencies": { + "accepts": "^1.3.5", + "cache-content-type": "^1.0.0", + "content-disposition": "~0.5.2", + "content-type": "^1.0.4", + "cookies": "~0.9.0", + "debug": "^4.3.2", + "delegates": "^1.0.0", + "depd": "^2.0.0", + "destroy": "^1.0.4", + "encodeurl": "^1.0.2", + "escape-html": "^1.0.3", + "fresh": "~0.5.2", + "http-assert": "^1.3.0", + "http-errors": "^1.6.3", + "is-generator-function": "^1.0.7", + "koa-compose": "^4.1.0", + "koa-convert": "^2.0.0", + "on-finished": "^2.3.0", + "only": "~0.0.2", + "parseurl": "^1.3.2", + "statuses": "^1.5.0", + "type-is": "^1.6.16", + "vary": "^1.1.2" + }, + "engines": { + "node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/koa/node_modules/http-errors": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", + "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", + "license": "MIT", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/koa/node_modules/http-errors/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/koa/node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, + "node_modules/@strapi/plugin-documentation/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" + }, + "node_modules/@strapi/plugin-documentation/node_modules/qs": { + "version": "6.14.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.1.tgz", + "integrity": "sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/rimraf": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.5.tgz", + "integrity": "sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==", + "license": "ISC", + "dependencies": { + "glob": "^10.3.7" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/typescript": { + "version": "5.4.4", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.4.tgz", + "integrity": "sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==", + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/@strapi/plugin-documentation/node_modules/zod": { + "version": "3.25.67", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.67.tgz", + "integrity": "sha512-idA2YXwpCdqUSKRCACDE6ItZD9TZzy3OZMtpfLoh6oPR47lipysRrJfjzMqFxQ3uJuUPyUeWe1r9vLH33xO/Qw==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, "node_modules/@strapi/plugin-users-permissions": { "version": "5.8.1", "resolved": "https://registry.npmjs.org/@strapi/plugin-users-permissions/-/plugin-users-permissions-5.8.1.tgz", @@ -8560,102 +6772,6 @@ "styled-components": "^6.0.0" } }, - "node_modules/@strapi/plugin-users-permissions/node_modules/@strapi/utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", - "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/plugin-users-permissions/node_modules/koa": { - "version": "2.15.2", - "resolved": "https://registry.npmjs.org/koa/-/koa-2.15.2.tgz", - "integrity": "sha512-MXTeZH3M6AJ8ukW2QZ8wqO3Dcdfh2WRRmjCBkEP+NhKNCiqlO5RDqHmSnsyNrbRJrdjyvIGSJho4vQiWgQJSVA==", - "license": "MIT", - "dependencies": { - "accepts": "^1.3.5", - "cache-content-type": "^1.0.0", - "content-disposition": "~0.5.2", - "content-type": "^1.0.4", - "cookies": "~0.9.0", - "debug": "^4.3.2", - "delegates": "^1.0.0", - "depd": "^2.0.0", - "destroy": "^1.0.4", - "encodeurl": "^1.0.2", - "escape-html": "^1.0.3", - "fresh": "~0.5.2", - "http-assert": "^1.3.0", - "http-errors": "^1.6.3", - "is-generator-function": "^1.0.7", - "koa-compose": "^4.1.0", - "koa-convert": "^2.0.0", - "on-finished": "^2.3.0", - "only": "~0.0.2", - "parseurl": "^1.3.2", - "statuses": "^1.5.0", - "type-is": "^1.6.16", - "vary": "^1.1.2" - }, - "engines": { - "node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4" - } - }, - "node_modules/@strapi/plugin-users-permissions/node_modules/koa/node_modules/http-errors": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", - "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", - "license": "MIT", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/plugin-users-permissions/node_modules/koa/node_modules/http-errors/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/plugin-users-permissions/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/@strapi/plugin-users-permissions/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/@strapi/provider-email-nodemailer": { "version": "5.36.0", "resolved": "https://registry.npmjs.org/@strapi/provider-email-nodemailer/-/provider-email-nodemailer-5.36.0.tgz", @@ -8670,6 +6786,12 @@ "npm": ">=6.0.0" } }, + "node_modules/@strapi/provider-email-nodemailer/node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, "node_modules/@strapi/provider-email-sendmail": { "version": "5.8.1", "resolved": "https://registry.npmjs.org/@strapi/provider-email-sendmail/-/provider-email-sendmail-5.8.1.tgz", @@ -8684,34 +6806,6 @@ "npm": ">=6.0.0" } }, - "node_modules/@strapi/provider-email-sendmail/node_modules/@strapi/utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", - "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/provider-email-sendmail/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, "node_modules/@strapi/provider-upload-aws-s3": { "version": "5.36.0", "resolved": "https://registry.npmjs.org/@strapi/provider-upload-aws-s3/-/provider-upload-aws-s3-5.36.0.tgz", @@ -8729,6 +6823,25 @@ "npm": ">=6.0.0" } }, + "node_modules/@strapi/provider-upload-aws-s3/node_modules/@aws-sdk/types": { + "version": "3.973.0", + "resolved": "https://registry.npmjs.org/@aws-sdk/types/-/types-3.973.0.tgz", + "integrity": "sha512-jYIdB7a7jhRTvyb378nsjyvJh1Si+zVduJ6urMNGpz8RjkmHZ+9vM2H07XaIB2Cfq0GhJRZYOfUCH8uqQhqBkQ==", + "license": "Apache-2.0", + "dependencies": { + "@smithy/types": "^4.12.0", + "tslib": "^2.6.2" + }, + "engines": { + "node": ">=20.0.0" + } + }, + "node_modules/@strapi/provider-upload-aws-s3/node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, "node_modules/@strapi/provider-upload-local": { "version": "5.8.1", "resolved": "https://registry.npmjs.org/@strapi/provider-upload-local/-/provider-upload-local-5.8.1.tgz", @@ -8743,34 +6856,6 @@ "npm": ">=6.0.0" } }, - "node_modules/@strapi/provider-upload-local/node_modules/@strapi/utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", - "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/provider-upload-local/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, "node_modules/@strapi/review-workflows": { "version": "5.8.1", "resolved": "https://registry.npmjs.org/@strapi/review-workflows/-/review-workflows-5.8.1.tgz", @@ -8802,34 +6887,6 @@ "styled-components": "^6.0.0" } }, - "node_modules/@strapi/review-workflows/node_modules/@strapi/utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", - "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/review-workflows/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, "node_modules/@strapi/strapi": { "version": "5.8.1", "resolved": "https://registry.npmjs.org/@strapi/strapi/-/strapi-5.8.1.tgz", @@ -8916,139 +6973,221 @@ "styled-components": "^6.0.0" } }, - "node_modules/@strapi/strapi/node_modules/@strapi/admin": { + "node_modules/@strapi/strapi/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.3.tgz", + "integrity": "sha512-U3fuQ0xNiAkXOmQ6w5dKpEvXQRSpHOnbw7gEfHCRXPeTKW9sBzVck6C5Yneb8LfJm0l6le4NQfkNPnWMSlTFUQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@strapi/strapi/node_modules/@strapi/data-transfer": { "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/admin/-/admin-5.8.1.tgz", - "integrity": "sha512-Rb6MMOhyjzYJktG4T8CheAIaMHwc5zqMBRz7oSlwgR7Y8VJ7YiN+1sn4fGRD5r4K0+7MLK2CbsYy3piu42GZdw==", + "resolved": "https://registry.npmjs.org/@strapi/data-transfer/-/data-transfer-5.8.1.tgz", + "integrity": "sha512-uIyYhoJOldzkAyeJi2tJ5JzWfTnHiVX79trLKZcZjyL357ipG3CUVhyoFOmy0xpNlBplq0v1RUGJ/GZBpNpkVA==", "license": "SEE LICENSE IN LICENSE", "dependencies": { - "@casl/ability": "6.5.0", - "@internationalized/date": "3.5.4", - "@radix-ui/react-context": "1.0.1", - "@radix-ui/react-toolbar": "1.0.4", - "@reduxjs/toolkit": "1.9.7", - "@strapi/design-system": "2.0.0-rc.14", - "@strapi/icons": "2.0.0-rc.14", - "@strapi/permissions": "5.8.1", + "@strapi/logger": "5.8.1", "@strapi/types": "5.8.1", - "@strapi/typescript-utils": "5.8.1", "@strapi/utils": "5.8.1", - "@testing-library/dom": "10.1.0", - "@testing-library/react": "15.0.7", - "@testing-library/user-event": "14.5.2", - "axios": "1.7.4", - "bcryptjs": "2.4.3", - "boxen": "5.1.2", - "chalk": "^4.1.2", - "codemirror5": "npm:codemirror@^5.65.11", - "cross-env": "^7.0.3", - "date-fns": "2.30.0", - "execa": "5.1.1", - "fast-deep-equal": "3.1.3", - "formik": "2.4.5", - "fractional-indexing": "3.2.0", + "chalk": "4.1.2", + "cli-table3": "0.6.5", + "commander": "8.3.0", "fs-extra": "11.2.0", - "highlight.js": "^10.4.1", - "immer": "9.0.21", "inquirer": "8.2.5", - "invariant": "^2.2.4", - "is-localhost-ip": "2.0.0", - "jsonwebtoken": "9.0.0", - "koa": "2.15.2", - "koa-compose": "4.1.0", - "koa-passport": "6.0.0", - "koa-static": "5.0.0", - "koa2-ratelimit": "^1.1.3", "lodash": "4.17.21", - "node-schedule": "2.1.1", "ora": "5.4.1", - "p-map": "4.0.0", - "passport-local": "1.0.0", - "pluralize": "8.0.0", - "punycode": "2.3.1", - "qs": "6.11.1", - "react-dnd": "16.0.1", - "react-dnd-html5-backend": "16.0.1", - "react-intl": "6.6.2", - "react-is": "^18.2.0", - "react-query": "3.39.3", - "react-redux": "8.1.3", - "react-select": "5.8.0", - "react-window": "1.8.10", - "rimraf": "5.0.5", - "sanitize-html": "2.13.0", - "scheduler": "0.23.0", + "resolve-cwd": "3.0.0", "semver": "7.5.4", - "sift": "16.0.1", - "typescript": "5.3.2", - "use-context-selector": "1.4.1", - "yup": "0.32.9", - "zod": "^3.22.4" + "stream-chain": "2.2.5", + "stream-json": "1.8.0", + "tar": "6.2.1", + "tar-stream": "2.2.0", + "ws": "8.17.1" }, "engines": { "node": ">=18.0.0 <=22.x.x", "npm": ">=6.0.0" - }, - "peerDependencies": { - "@strapi/data-transfer": "^5.0.0", - "react": "^17.0.0 || ^18.0.0", - "react-dom": "^17.0.0 || ^18.0.0", - "react-router-dom": "^6.0.0", - "styled-components": "^6.0.0" } }, - "node_modules/@strapi/strapi/node_modules/@strapi/admin/node_modules/use-context-selector": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/use-context-selector/-/use-context-selector-1.4.1.tgz", - "integrity": "sha512-Io2ArvcRO+6MWIhkdfMFt+WKQX+Vb++W8DS2l03z/Vw/rz3BclKpM0ynr4LYGyU85Eke+Yx5oIhTY++QR0ZDoA==", + "node_modules/@strapi/strapi/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@strapi/strapi/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "license": "MIT", "peerDependencies": { - "react": ">=16.8.0", - "react-dom": "*", - "react-native": "*", - "scheduler": ">=0.19.0" - }, - "peerDependenciesMeta": { - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - } + "ajv": "^6.9.1" } }, - "node_modules/@strapi/strapi/node_modules/@strapi/logger": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/logger/-/logger-5.8.1.tgz", - "integrity": "sha512-tVaHUkXM75sHbnzPOJbg8kMO0Xuo2wOT7g/oRe/c/2ckeCki4mjA0637OYV1GibOq5SpEICF7DOv3JssYMdWIQ==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "lodash": "4.17.21", - "winston": "3.10.0" + "node_modules/@strapi/strapi/node_modules/esbuild": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.3.tgz", + "integrity": "sha512-Kgq0/ZsAPzKrbOjCQcjoSmPoWhlcVnGAUo7jvaLHoxW1Drto0KGkR1xBNg2Cp43b9ImvxmPEJZ9xkfcnqPsfBw==", + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" }, "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.3", + "@esbuild/android-arm": "0.21.3", + "@esbuild/android-arm64": "0.21.3", + "@esbuild/android-x64": "0.21.3", + "@esbuild/darwin-arm64": "0.21.3", + "@esbuild/darwin-x64": "0.21.3", + "@esbuild/freebsd-arm64": "0.21.3", + "@esbuild/freebsd-x64": "0.21.3", + "@esbuild/linux-arm": "0.21.3", + "@esbuild/linux-arm64": "0.21.3", + "@esbuild/linux-ia32": "0.21.3", + "@esbuild/linux-loong64": "0.21.3", + "@esbuild/linux-mips64el": "0.21.3", + "@esbuild/linux-ppc64": "0.21.3", + "@esbuild/linux-riscv64": "0.21.3", + "@esbuild/linux-s390x": "0.21.3", + "@esbuild/linux-x64": "0.21.3", + "@esbuild/netbsd-x64": "0.21.3", + "@esbuild/openbsd-x64": "0.21.3", + "@esbuild/sunos-x64": "0.21.3", + "@esbuild/win32-arm64": "0.21.3", + "@esbuild/win32-ia32": "0.21.3", + "@esbuild/win32-x64": "0.21.3" } }, - "node_modules/@strapi/strapi/node_modules/@strapi/permissions": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/permissions/-/permissions-5.8.1.tgz", - "integrity": "sha512-b+zir9726x0P5PeXnYcYmyXOsir8VqvuDkOVyrbBxw7hJtMViCiUZNHIt9HFshfGkgR3lk8XhiCyZixZbsCJgA==", - "license": "SEE LICENSE IN LICENSE", + "node_modules/@strapi/strapi/node_modules/fork-ts-checker-webpack-plugin": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-8.0.0.tgz", + "integrity": "sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==", + "license": "MIT", "dependencies": { - "@casl/ability": "6.5.0", - "@strapi/utils": "5.8.1", - "lodash": "4.17.21", - "qs": "6.11.1", - "sift": "16.0.1" + "@babel/code-frame": "^7.16.7", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cosmiconfig": "^7.0.1", + "deepmerge": "^4.2.2", + "fs-extra": "^10.0.0", + "memfs": "^3.4.1", + "minimatch": "^3.0.4", + "node-abort-controller": "^3.0.1", + "schema-utils": "^3.1.1", + "semver": "^7.3.5", + "tapable": "^2.2.1" }, "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" + "node": ">=12.13.0", + "yarn": ">=1.0.0" + }, + "peerDependencies": { + "typescript": ">3.6.0", + "webpack": "^5.11.0" } }, - "node_modules/@strapi/strapi/node_modules/@strapi/types": { + "node_modules/@strapi/strapi/node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@strapi/strapi/node_modules/fork-ts-checker-webpack-plugin/node_modules/semver": { + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@strapi/strapi/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "license": "MIT" + }, + "node_modules/@strapi/strapi/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/@strapi/strapi/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@strapi/strapi/node_modules/typescript": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.2.tgz", + "integrity": "sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==", + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/@strapi/types": { "version": "5.8.1", "resolved": "https://registry.npmjs.org/@strapi/types/-/types-5.8.1.tgz", "integrity": "sha512-Zs/O45UKB383SRMPaDisG3x2UP7rfO/dtTISGsGBTpt6YMVz7clnTiZxYRzc6qGHx7vbpCINI+loBOIxk5/PSw==", @@ -9074,7 +7213,7 @@ "npm": ">=6.0.0" } }, - "node_modules/@strapi/strapi/node_modules/@strapi/typescript-utils": { + "node_modules/@strapi/typescript-utils": { "version": "5.8.1", "resolved": "https://registry.npmjs.org/@strapi/typescript-utils/-/typescript-utils-5.8.1.tgz", "integrity": "sha512-LORsREMH9mG/1EY5FVLHs+tKoYLZ+NTBqM4L2itpfhEPJLGPIO4nWvMbiKMlixd9oxMoTc8P3TN2JhM3L3hj6g==", @@ -9092,185 +7231,7 @@ "npm": ">=6.0.0" } }, - "node_modules/@strapi/strapi/node_modules/@strapi/utils": { - "version": "5.8.1", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", - "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "^3.22.4" - }, - "engines": { - "node": ">=18.0.0 <=22.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/strapi/node_modules/@testing-library/dom": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-10.1.0.tgz", - "integrity": "sha512-wdsYKy5zupPyLCW2Je5DLHSxSfbIp6h80WoHOQc+RPtmPGA52O9x5MJEkv92Sjonpq+poOAtUKhh1kBGAXBrNA==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^5.0.1", - "aria-query": "5.3.0", - "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.5.0", - "pretty-format": "^27.0.2" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/@strapi/strapi/node_modules/@testing-library/react": { - "version": "15.0.7", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-15.0.7.tgz", - "integrity": "sha512-cg0RvEdD1TIhhkm1IeYMQxrzy0MtUNfa3minv4MjbgcYzJAZ7yD0i0lwoPOTPr+INtiXFezt2o8xMSnyHhEn2Q==", - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.12.5", - "@testing-library/dom": "^10.0.0", - "@types/react-dom": "^18.0.0" - }, - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "@types/react": "^18.0.0", - "react": "^18.0.0", - "react-dom": "^18.0.0" - }, - "peerDependenciesMeta": { - "@types/react": { - "optional": true - } - } - }, - "node_modules/@strapi/strapi/node_modules/@testing-library/user-event": { - "version": "14.5.2", - "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-14.5.2.tgz", - "integrity": "sha512-YAh82Wh4TIrxYLmfGcixwD18oIjyC1pFQC2Y01F2lzV2HTMiYrI0nze0FD0ocB//CKS/7jIUgae+adPqxK5yCQ==", - "license": "MIT", - "engines": { - "node": ">=12", - "npm": ">=6" - }, - "peerDependencies": { - "@testing-library/dom": ">=7.21.4" - } - }, - "node_modules/@strapi/strapi/node_modules/axios": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.4.tgz", - "integrity": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==", - "license": "MIT", - "dependencies": { - "follow-redirects": "^1.15.6", - "form-data": "^4.0.0", - "proxy-from-env": "^1.1.0" - } - }, - "node_modules/@strapi/strapi/node_modules/koa": { - "version": "2.15.2", - "resolved": "https://registry.npmjs.org/koa/-/koa-2.15.2.tgz", - "integrity": "sha512-MXTeZH3M6AJ8ukW2QZ8wqO3Dcdfh2WRRmjCBkEP+NhKNCiqlO5RDqHmSnsyNrbRJrdjyvIGSJho4vQiWgQJSVA==", - "license": "MIT", - "dependencies": { - "accepts": "^1.3.5", - "cache-content-type": "^1.0.0", - "content-disposition": "~0.5.2", - "content-type": "^1.0.4", - "cookies": "~0.9.0", - "debug": "^4.3.2", - "delegates": "^1.0.0", - "depd": "^2.0.0", - "destroy": "^1.0.4", - "encodeurl": "^1.0.2", - "escape-html": "^1.0.3", - "fresh": "~0.5.2", - "http-assert": "^1.3.0", - "http-errors": "^1.6.3", - "is-generator-function": "^1.0.7", - "koa-compose": "^4.1.0", - "koa-convert": "^2.0.0", - "on-finished": "^2.3.0", - "only": "~0.0.2", - "parseurl": "^1.3.2", - "statuses": "^1.5.0", - "type-is": "^1.6.16", - "vary": "^1.1.2" - }, - "engines": { - "node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4" - } - }, - "node_modules/@strapi/strapi/node_modules/koa/node_modules/http-errors": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", - "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", - "license": "MIT", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/strapi/node_modules/koa/node_modules/http-errors/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/strapi/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/@strapi/strapi/node_modules/qs": { - "version": "6.11.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz", - "integrity": "sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==", - "license": "BSD-3-Clause", - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/@strapi/strapi/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/@strapi/strapi/node_modules/typescript": { + "node_modules/@strapi/typescript-utils/node_modules/typescript": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.2.tgz", "integrity": "sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==", @@ -9283,93 +7244,6 @@ "node": ">=14.17" } }, - "node_modules/@strapi/types": { - "version": "5.36.0", - "resolved": "https://registry.npmjs.org/@strapi/types/-/types-5.36.0.tgz", - "integrity": "sha512-UlwzWvKaJm0xryUNdweQokNIwfTxIpjaWAI7J26JIV5nv/YaEInTBrjA4grrwubYC3CZeogz+2TntxKdyHAzJA==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@casl/ability": "6.5.0", - "@koa/cors": "5.0.0", - "@koa/router": "12.0.2", - "@strapi/database": "5.36.0", - "@strapi/logger": "5.36.0", - "@strapi/permissions": "5.36.0", - "@strapi/utils": "5.36.0", - "commander": "8.3.0", - "json-logic-js": "2.0.5", - "koa": "2.16.3", - "koa-body": "6.0.1", - "node-schedule": "2.1.1", - "typedoc": "0.25.10", - "typedoc-github-wiki-theme": "1.1.0", - "typedoc-plugin-markdown": "3.17.1", - "zod": "3.25.67" - }, - "engines": { - "node": ">=20.0.0 <=24.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/types/node_modules/@strapi/database": { - "version": "5.36.0", - "resolved": "https://registry.npmjs.org/@strapi/database/-/database-5.36.0.tgz", - "integrity": "sha512-bn1hHeIlGIjCnHtul+Szotz7BZHYC8ET8k1CZ8BL0WzaYhkCno0FsNssdOV70/u5ErzGDmjCvutWsDhMxLsn4Q==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@paralleldrive/cuid2": "2.2.2", - "@strapi/utils": "5.36.0", - "ajv": "8.16.0", - "date-fns": "2.30.0", - "debug": "4.3.4", - "fs-extra": "11.2.0", - "knex": "3.0.1", - "lodash": "4.17.21", - "semver": "7.5.4", - "umzug": "3.8.1" - }, - "engines": { - "node": ">=20.0.0 <=24.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/types/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/@strapi/typescript-utils": { - "version": "5.36.0", - "resolved": "https://registry.npmjs.org/@strapi/typescript-utils/-/typescript-utils-5.36.0.tgz", - "integrity": "sha512-pPLZqziZ5MbncsNdusWrQGGybijXkMM6mhh2yoWj6gOwoZ93+1uYauP3PlrzMeMkznmivw5RHB9vmF/k+kYKpg==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "chalk": "4.1.2", - "cli-table3": "0.6.5", - "fs-extra": "11.2.0", - "lodash": "4.17.23", - "prettier": "3.3.3", - "typescript": "5.4.4" - }, - "engines": { - "node": ">=20.0.0 <=24.x.x", - "npm": ">=6.0.0" - } - }, - "node_modules/@strapi/typescript-utils/node_modules/typescript": { - "version": "5.4.4", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.4.tgz", - "integrity": "sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==", - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, "node_modules/@strapi/ui-primitives": { "version": "2.0.0-rc.14", "resolved": "https://registry.npmjs.org/@strapi/ui-primitives/-/ui-primitives-2.0.0-rc.14.tgz", @@ -9458,7 +7332,7 @@ "styled-components": "^6.0.0" } }, - "node_modules/@strapi/upload/node_modules/@strapi/utils": { + "node_modules/@strapi/utils": { "version": "5.8.1", "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.8.1.tgz", "integrity": "sha512-GodrZ9TumxdENXTz1lXxETlhewjsoiobEG+xDzBhuQgac8E5QhtkyRXUIc3avZXvW0OML8Q5cMorY8iAm9S8MA==", @@ -9480,55 +7354,31 @@ "npm": ">=6.0.0" } }, - "node_modules/@strapi/upload/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, - "node_modules/@strapi/upload/node_modules/qs": { - "version": "6.11.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz", - "integrity": "sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==", - "license": "BSD-3-Clause", + "node_modules/@strapi/utils/node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", "dependencies": { - "side-channel": "^1.0.4" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" }, "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 0.8" } }, - "node_modules/@strapi/utils": { - "version": "5.36.0", - "resolved": "https://registry.npmjs.org/@strapi/utils/-/utils-5.36.0.tgz", - "integrity": "sha512-/2cNbboWZolwz6UI5MwrDc3f8hbBqbtdk+sjATR488ugedG1XQdlLWlYVUzWW/kK42bqqFwgJvRyroBUveWIrg==", - "license": "SEE LICENSE IN LICENSE", - "dependencies": { - "@sindresorhus/slugify": "1.1.0", - "date-fns": "2.30.0", - "execa": "5.1.1", - "http-errors": "2.0.0", - "lodash": "4.17.21", - "node-machine-id": "1.1.12", - "p-map": "4.0.0", - "preferred-pm": "3.1.2", - "yup": "0.32.9", - "zod": "3.25.67" - }, + "node_modules/@strapi/utils/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", "engines": { - "node": ">=20.0.0 <=24.x.x", - "npm": ">=6.0.0" + "node": ">= 0.8" } }, - "node_modules/@strapi/utils/node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "license": "MIT" - }, "node_modules/@swc/core": { "version": "1.15.11", "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.15.11.tgz", @@ -9583,150 +7433,6 @@ "node": ">=10" } }, - "node_modules/@swc/core-darwin-x64": { - "version": "1.15.11", - "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.15.11.tgz", - "integrity": "sha512-S52Gu1QtPSfBYDiejlcfp9GlN+NjTZBRRNsz8PNwBgSE626/FUf2PcllVUix7jqkoMC+t0rS8t+2/aSWlMuQtA==", - "cpu": [ - "x64" - ], - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-arm-gnueabihf": { - "version": "1.15.11", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.15.11.tgz", - "integrity": "sha512-lXJs8oXo6Z4yCpimpQ8vPeCjkgoHu5NoMvmJZ8qxDyU99KVdg6KwU9H79vzrmB+HfH+dCZ7JGMqMF//f8Cfvdg==", - "cpu": [ - "arm" - ], - "license": "Apache-2.0", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-arm64-gnu": { - "version": "1.15.11", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.15.11.tgz", - "integrity": "sha512-chRsz1K52/vj8Mfq/QOugVphlKPWlMh10V99qfH41hbGvwAU6xSPd681upO4bKiOr9+mRIZZW+EfJqY42ZzRyA==", - "cpu": [ - "arm64" - ], - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-arm64-musl": { - "version": "1.15.11", - "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.15.11.tgz", - "integrity": "sha512-PYftgsTaGnfDK4m6/dty9ryK1FbLk+LosDJ/RJR2nkXGc8rd+WenXIlvHjWULiBVnS1RsjHHOXmTS4nDhe0v0w==", - "cpu": [ - "arm64" - ], - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-x64-gnu": { - "version": "1.15.11", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.15.11.tgz", - "integrity": "sha512-DKtnJKIHiZdARyTKiX7zdRjiDS1KihkQWatQiCHMv+zc2sfwb4Glrodx2VLOX4rsa92NLR0Sw8WLcPEMFY1szQ==", - "cpu": [ - "x64" - ], - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-linux-x64-musl": { - "version": "1.15.11", - "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.15.11.tgz", - "integrity": "sha512-mUjjntHj4+8WBaiDe5UwRNHuEzLjIWBTSGTw0JT9+C9/Yyuh4KQqlcEQ3ro6GkHmBGXBFpGIj/o5VMyRWfVfWw==", - "cpu": [ - "x64" - ], - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-win32-arm64-msvc": { - "version": "1.15.11", - "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.15.11.tgz", - "integrity": "sha512-ZkNNG5zL49YpaFzfl6fskNOSxtcZ5uOYmWBkY4wVAvgbSAQzLRVBp+xArGWh2oXlY/WgL99zQSGTv7RI5E6nzA==", - "cpu": [ - "arm64" - ], - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-win32-ia32-msvc": { - "version": "1.15.11", - "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.15.11.tgz", - "integrity": "sha512-6XnzORkZCQzvTQ6cPrU7iaT9+i145oLwnin8JrfsLG41wl26+5cNQ2XV3zcbrnFEV6esjOceom9YO1w9mGJByw==", - "cpu": [ - "ia32" - ], - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=10" - } - }, - "node_modules/@swc/core-win32-x64-msvc": { - "version": "1.15.11", - "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.15.11.tgz", - "integrity": "sha512-IQ2n6af7XKLL6P1gIeZACskSxK8jWtoKpJWLZmdXTDj1MGzktUy4i+FvpdtxFmJWNavRWH1VmTr6kAubRDHeKw==", - "cpu": [ - "x64" - ], - "license": "Apache-2.0 AND MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=10" - } - }, "node_modules/@swc/counter": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", @@ -9810,29 +7516,26 @@ } }, "node_modules/@testing-library/react": { - "version": "16.3.0", - "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-16.3.0.tgz", - "integrity": "sha512-kFSyxiEDwv1WLl2fgsq6pPBbw5aWKrsY2/noi1Id0TK0UParSF62oFQFGHXIyaG4pp2tEub/Zlel+fjjZILDsw==", + "version": "15.0.7", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-15.0.7.tgz", + "integrity": "sha512-cg0RvEdD1TIhhkm1IeYMQxrzy0MtUNfa3minv4MjbgcYzJAZ7yD0i0lwoPOTPr+INtiXFezt2o8xMSnyHhEn2Q==", "license": "MIT", "dependencies": { - "@babel/runtime": "^7.12.5" + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^10.0.0", + "@types/react-dom": "^18.0.0" }, "engines": { "node": ">=18" }, "peerDependencies": { - "@testing-library/dom": "^10.0.0", - "@types/react": "^18.0.0 || ^19.0.0", - "@types/react-dom": "^18.0.0 || ^19.0.0", - "react": "^18.0.0 || ^19.0.0", - "react-dom": "^18.0.0 || ^19.0.0" + "@types/react": "^18.0.0", + "react": "^18.0.0", + "react-dom": "^18.0.0" }, "peerDependenciesMeta": { "@types/react": { "optional": true - }, - "@types/react-dom": { - "optional": true } } }, @@ -9864,6 +7567,21 @@ "@types/node": "*" } }, + "node_modules/@types/accepts/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/accepts/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/argparse": { "version": "1.0.38", "resolved": "https://registry.npmjs.org/@types/argparse/-/argparse-1.0.38.tgz", @@ -9886,6 +7604,21 @@ "@types/node": "*" } }, + "node_modules/@types/body-parser/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/body-parser/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/cacheable-request": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/@types/cacheable-request/-/cacheable-request-6.0.3.tgz", @@ -9898,6 +7631,21 @@ "@types/responselike": "^1.0.0" } }, + "node_modules/@types/cacheable-request/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/cacheable-request/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/co-body": { "version": "6.1.3", "resolved": "https://registry.npmjs.org/@types/co-body/-/co-body-6.1.3.tgz", @@ -9908,6 +7656,21 @@ "@types/qs": "*" } }, + "node_modules/@types/co-body/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/co-body/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/connect": { "version": "3.4.38", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", @@ -9917,6 +7680,21 @@ "@types/node": "*" } }, + "node_modules/@types/connect/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/connect/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/content-disposition": { "version": "0.5.9", "resolved": "https://registry.npmjs.org/@types/content-disposition/-/content-disposition-0.5.9.tgz", @@ -9935,6 +7713,54 @@ "@types/node": "*" } }, + "node_modules/@types/cookies/node_modules/@types/express": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/@types/express/-/express-5.0.6.tgz", + "integrity": "sha512-sKYVuV7Sv9fbPIt/442koC7+IIwK5olP1KWeD88e/idgoJqDm3JV/YUiPwkoKK92ylff2MGxSz1CSjsXelx0YA==", + "license": "MIT", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^5.0.0", + "@types/serve-static": "^2" + } + }, + "node_modules/@types/cookies/node_modules/@types/express-serve-static-core": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.1.1.tgz", + "integrity": "sha512-v4zIMr/cX7/d2BpAEX3KNKL/JrT1s43s96lLvvdTmza1oEvDudCqK9aF/djc/SWgy8Yh0h30TZx5VpzqFCxk5A==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, + "node_modules/@types/cookies/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/cookies/node_modules/@types/serve-static": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-2.2.0.tgz", + "integrity": "sha512-8mam4H1NHLtu7nmtalF7eyBH14QyOASmcxHhSfEoRyr0nP/YdoesEtU+uSRvMe96TW/HPTtkoKqQLl53N7UXMQ==", + "license": "MIT", + "dependencies": { + "@types/http-errors": "*", + "@types/node": "*" + } + }, + "node_modules/@types/cookies/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/eslint": { "version": "9.6.1", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", @@ -9985,6 +7811,21 @@ "@types/send": "*" } }, + "node_modules/@types/express-serve-static-core/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/express-serve-static-core/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/fined": { "version": "1.1.5", "resolved": "https://registry.npmjs.org/@types/fined/-/fined-1.1.5.tgz", @@ -10000,6 +7841,21 @@ "@types/node": "*" } }, + "node_modules/@types/follow-redirects/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/follow-redirects/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/formidable": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@types/formidable/-/formidable-2.0.6.tgz", @@ -10009,6 +7865,21 @@ "@types/node": "*" } }, + "node_modules/@types/formidable/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/formidable/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/glob": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz", @@ -10019,6 +7890,21 @@ "@types/node": "*" } }, + "node_modules/@types/glob/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/glob/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/hoist-non-react-statics": { "version": "3.3.7", "resolved": "https://registry.npmjs.org/@types/hoist-non-react-statics/-/hoist-non-react-statics-3.3.7.tgz", @@ -10105,6 +7991,21 @@ "@types/node": "*" } }, + "node_modules/@types/jsonwebtoken/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/jsonwebtoken/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/keygrip": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/@types/keygrip/-/keygrip-1.0.6.tgz", @@ -10120,6 +8021,21 @@ "@types/node": "*" } }, + "node_modules/@types/keyv/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/keyv/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/koa": { "version": "2.15.0", "resolved": "https://registry.npmjs.org/@types/koa/-/koa-2.15.0.tgz", @@ -10145,6 +8061,52 @@ "@types/koa": "*" } }, + "node_modules/@types/koa-compose/node_modules/@types/koa": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/koa/-/koa-3.0.1.tgz", + "integrity": "sha512-VkB6WJUQSe0zBpR+Q7/YIUESGp5wPHcaXr0xueU5W0EOUWtlSbblsl+Kl31lyRQ63nIILh0e/7gXjQ09JXJIHw==", + "license": "MIT", + "dependencies": { + "@types/accepts": "*", + "@types/content-disposition": "*", + "@types/cookies": "*", + "@types/http-assert": "*", + "@types/http-errors": "^2", + "@types/keygrip": "*", + "@types/koa-compose": "*", + "@types/node": "*" + } + }, + "node_modules/@types/koa-compose/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/koa-compose/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, + "node_modules/@types/koa/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/koa/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/liftoff": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/@types/liftoff/-/liftoff-4.0.3.tgz", @@ -10155,6 +8117,21 @@ "@types/node": "*" } }, + "node_modules/@types/liftoff/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/liftoff/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/lodash": { "version": "4.17.23", "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.17.23.tgz", @@ -10168,10 +8145,77 @@ "license": "MIT" }, "node_modules/@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "license": "MIT" + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-6.0.0.tgz", + "integrity": "sha512-zmPitbQ8+6zNutpwgcQuLcsEpn/Cj54Kbn7L5pX0Os5kdWplB7xPgEh/g+SWOB/qmows2gpuCaPyduq8ZZRnxA==", + "deprecated": "This is a stub types definition. minimatch provides its own type definitions, so you do not need this installed.", + "license": "MIT", + "dependencies": { + "minimatch": "*" + } + }, + "node_modules/@types/minimatch/node_modules/@isaacs/cliui": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-9.0.0.tgz", + "integrity": "sha512-AokJm4tuBHillT+FpMtxQ60n8ObyXBatq7jD2/JA9dxbDDokKQm8KMht5ibGzLVU9IJDIKK4TPKgMHEYMn3lMg==", + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } + }, + "node_modules/@types/minimatch/node_modules/balanced-match": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-4.0.2.tgz", + "integrity": "sha512-x0K50QvKQ97fdEz2kPehIerj+YTeptKF9hyYkKf6egnwmMWAkADiO0QCzSp0R5xN8FTZgYaBfSaue46Ej62nMg==", + "license": "MIT", + "dependencies": { + "jackspeak": "^4.2.3" + }, + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/@types/minimatch/node_modules/brace-expansion": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.2.tgz", + "integrity": "sha512-Pdk8c9poy+YhOgVWw1JNN22/HcivgKWwpxKq04M/jTmHyCZn12WPJebZxdjSa5TmBqISrUSgNYU3eRORljfCCw==", + "license": "MIT", + "dependencies": { + "balanced-match": "^4.0.2" + }, + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/@types/minimatch/node_modules/jackspeak": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.2.3.tgz", + "integrity": "sha512-ykkVRwrYvFm1nb2AJfKKYPr0emF6IiXDYUaFx4Zn9ZuIH7MrzEZ3sD5RlqGXNRpHtvUHJyOnCEFxOlNDtGo7wg==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^9.0.0" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@types/minimatch/node_modules/minimatch": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.0.tgz", + "integrity": "sha512-ugkC31VaVg9cF0DFVoADH12k6061zNZkZON+aX8AWsR9GhPcErkcMBceb6znR8wLERM2AkkOxy2nWRLpT9Jq5w==", + "license": "BlueOak-1.0.0", + "dependencies": { + "brace-expansion": "^5.0.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, "node_modules/@types/ms": { "version": "2.1.0", @@ -10183,6 +8227,7 @@ "version": "20.19.33", "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.33.tgz", "integrity": "sha512-Rs1bVAIdBs5gbTIKza/tgpMuG1k3U/UMJLWecIMxNdJFDMzcM5LOiLVRYh3PilWEYDIeUDv7bpiHPLPsbydGcw==", + "devOptional": true, "license": "MIT", "dependencies": { "undici-types": "~6.21.0" @@ -10197,6 +8242,21 @@ "@types/node": "*" } }, + "node_modules/@types/nodemon/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/nodemon/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/normalize-package-data": { "version": "2.4.4", "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", @@ -10270,6 +8330,21 @@ "@types/node": "*" } }, + "node_modules/@types/responselike/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/responselike/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/send": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@types/send/-/send-1.2.1.tgz", @@ -10279,6 +8354,21 @@ "@types/node": "*" } }, + "node_modules/@types/send/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/send/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/serve-static": { "version": "1.15.10", "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.10.tgz", @@ -10290,6 +8380,15 @@ "@types/send": "<1" } }, + "node_modules/@types/serve-static/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, "node_modules/@types/serve-static/node_modules/@types/send": { "version": "0.17.6", "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.6.tgz", @@ -10300,6 +8399,12 @@ "@types/node": "*" } }, + "node_modules/@types/serve-static/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/stylis": { "version": "4.2.7", "resolved": "https://registry.npmjs.org/@types/stylis/-/stylis-4.2.7.tgz", @@ -10315,6 +8420,21 @@ "@types/node": "*" } }, + "node_modules/@types/through/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/through/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/@types/triple-beam": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/@types/triple-beam/-/triple-beam-1.3.5.tgz", @@ -10337,6 +8457,23 @@ "@types/node": "*" } }, + "node_modules/@types/yauzl/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", + "license": "MIT", + "optional": true, + "dependencies": { + "undici-types": "~7.16.0" + } + }, + "node_modules/@types/yauzl/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT", + "optional": true + }, "node_modules/@ucast/core": { "version": "1.10.2", "resolved": "https://registry.npmjs.org/@ucast/core/-/core-1.10.2.tgz", @@ -10673,35 +8810,21 @@ } }, "node_modules/ajv": { - "version": "8.16.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.16.0.tgz", - "integrity": "sha512-F0twR8U1ZU67JIEtekUcLkXkoO5mMMmgGD8sK/xUFzJ805jxHQl92hImFAqqXMyMYjSPOyUPAwHYhB72g5sTXw==", + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.4.1" + "require-from-string": "^2.0.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/ajv-draft-04": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/ajv-draft-04/-/ajv-draft-04-1.0.0.tgz", - "integrity": "sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==", - "license": "MIT", - "peerDependencies": { - "ajv": "^8.5.0" - }, - "peerDependenciesMeta": { - "ajv": { - "optional": true - } - } - }, "node_modules/ajv-formats": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", @@ -10841,10 +8964,13 @@ } }, "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "license": "Python-2.0" + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } }, "node_modules/aria-hidden": { "version": "1.2.6", @@ -10937,16 +9063,30 @@ "license": "MIT" }, "node_modules/axios": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/axios/-/axios-1.12.2.tgz", - "integrity": "sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==", + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.4.tgz", + "integrity": "sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==", "license": "MIT", "dependencies": { "follow-redirects": "^1.15.6", - "form-data": "^4.0.4", + "form-data": "^4.0.0", "proxy-from-env": "^1.1.0" } }, + "node_modules/b4a": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.7.4.tgz", + "integrity": "sha512-u20zJLDaSWpxaZ+zaAkEIB2dZZ1o+DF4T/MRbmsvGp9nletHOyiai19OzX1fF8xUBYsO1bPXxODvcd0978pnug==", + "license": "Apache-2.0", + "peerDependencies": { + "react-native-b4a": "*" + }, + "peerDependenciesMeta": { + "react-native-b4a": { + "optional": true + } + } + }, "node_modules/babel-plugin-macros": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", @@ -11164,29 +9304,6 @@ "readable-stream": "^3.4.0" } }, - "node_modules/bl/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/bl/node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, "node_modules/bn.js": { "version": "4.12.2", "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz", @@ -11203,7 +9320,6 @@ "version": "3.2.0", "resolved": "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz", "integrity": "sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw==", - "deprecated": "Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.", "license": "MIT" }, "node_modules/bowser": { @@ -11271,65 +9387,6 @@ "unload": "2.2.0" } }, - "node_modules/broadcast-channel/node_modules/brace-expansion": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/broadcast-channel/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/broadcast-channel/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/broadcast-channel/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/brorand": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", @@ -11382,13 +9439,27 @@ } }, "node_modules/buffer": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.6.0.tgz", - "integrity": "sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==", + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "license": "MIT", "dependencies": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4" + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" } }, "node_modules/buffer-crc32": { @@ -11416,7 +9487,6 @@ "version": "3.10.0", "resolved": "https://registry.npmjs.org/buildmail/-/buildmail-3.10.0.tgz", "integrity": "sha512-6e5sDN/pl3en5Klqdfyir7LEIBiFr9oqZuvYaEyVwjxpIbBZN+98e0j87Fz2Ukl8ud32rbk9VGOZAnsOZ7pkaA==", - "deprecated": "This project is unmaintained", "license": "MIT", "dependencies": { "addressparser": "1.0.1", @@ -11427,26 +9497,6 @@ "nodemailer-shared": "1.1.0" } }, - "node_modules/buildmail/node_modules/iconv-lite": { - "version": "0.4.13", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz", - "integrity": "sha512-QwVuTNQv7tXC5mMWFX5N5wGjmybjNBBD8P3BReTkPmipoxTUFgWM2gXNvldHQr6T14DH0Dh6qBVg98iJt7u4mQ==", - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/buildmail/node_modules/libmime": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/libmime/-/libmime-2.1.0.tgz", - "integrity": "sha512-4be2R6/jOasyPTw0BkpIZBVk2cElqjdIdS0PRPhbOCV4wWuL/ZcYYpN1BCTVB+6eIQ0uuAwp5hQTHFrM5Joa8w==", - "license": "MIT", - "dependencies": { - "iconv-lite": "0.4.13", - "libbase64": "0.1.0", - "libqp": "1.1.0" - } - }, "node_modules/byte-size": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/byte-size/-/byte-size-8.1.1.tgz", @@ -11505,21 +9555,6 @@ "node": ">=8" } }, - "node_modules/cacheable-request/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "license": "MIT", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/call-bind-apply-helpers": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", @@ -11559,13 +9594,13 @@ } }, "node_modules/camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", "license": "MIT", "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" + "no-case": "^2.2.0", + "upper-case": "^1.1.1" } }, "node_modules/camelcase": { @@ -11624,6 +9659,15 @@ "integrity": "sha512-cjrsQufETwxjvwZbYbKBCJNvmQ2++G9AvT45zDi7NXL9k2PdVcs2h0jQz96J6G4TMKRCcEsoJ+QTgQD00Igtjw==", "license": "MIT" }, + "node_modules/ce-la-react": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/ce-la-react/-/ce-la-react-0.3.2.tgz", + "integrity": "sha512-QJ6k4lOD/btI08xG8jBPxRCGXvCnusGGkTsiXk0u3NqUu/W+BXRnFD4PYjwtqh8AWmGa5LDbGk0fLQsqr0nSMA==", + "license": "BSD-3-Clause", + "peerDependencies": { + "react": ">=17.0.0" + } + }, "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -11640,6 +9684,18 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, + "node_modules/chalk/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/change-case": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/change-case/-/change-case-3.1.0.tgz", @@ -11666,16 +9722,6 @@ "upper-case-first": "^1.1.0" } }, - "node_modules/change-case/node_modules/camel-case": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", - "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", - "license": "MIT", - "dependencies": { - "no-case": "^2.2.0", - "upper-case": "^1.1.1" - } - }, "node_modules/change-case/node_modules/param-case": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", @@ -11685,16 +9731,6 @@ "no-case": "^2.2.0" } }, - "node_modules/change-case/node_modules/pascal-case": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz", - "integrity": "sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==", - "license": "MIT", - "dependencies": { - "camel-case": "^3.0.0", - "upper-case-first": "^1.1.0" - } - }, "node_modules/chardet": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", @@ -11744,9 +9780,9 @@ } }, "node_modules/cheerio/node_modules/undici": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/undici/-/undici-7.21.0.tgz", - "integrity": "sha512-Hn2tCQpoDt1wv23a68Ctc8Cr/BHpUSfaPYrkajTXOS9IKpxVRx/X5m1K2YkbK2ipgZgxXSgsUinl3x+2YdSSfg==", + "version": "7.22.0", + "resolved": "https://registry.npmjs.org/undici/-/undici-7.22.0.tgz", + "integrity": "sha512-RqslV2Us5BrllB+JeiZnK4peryVTndy9Dnqq62S3yYRRTj0tFQCwEniUy2167skdGOy3vqRzEvl1Dm4sV2ReDg==", "license": "MIT", "engines": { "node": ">=20.18.1" @@ -11834,15 +9870,6 @@ "node": ">= 10.0" } }, - "node_modules/clean-css/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/clean-stack": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", @@ -11925,17 +9952,14 @@ } }, "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "license": "ISC", "dependencies": { "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", + "strip-ansi": "^6.0.0", "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" } }, "node_modules/clone": { @@ -11994,6 +10018,21 @@ "node": ">=8.0.0" } }, + "node_modules/co-body/node_modules/qs": { + "version": "6.14.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz", + "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/codemirror": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-6.0.2.tgz", @@ -12096,6 +10135,15 @@ "node": ">= 0.6" } }, + "node_modules/compressible/node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, "node_modules/compute-scroll-into-view": { "version": "1.0.20", "resolved": "https://registry.npmjs.org/compute-scroll-into-view/-/compute-scroll-into-view-1.0.20.tgz", @@ -12135,19 +10183,51 @@ "url": "https://github.com/open-cli-tools/concurrently?sponsor=1" } }, - "node_modules/concurrently/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "license": "MIT", + "node_modules/concurrently/node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "license": "ISC", "dependencies": { - "has-flag": "^4.0.0" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" }, "engines": { - "node": ">=10" + "node": ">=12" + } + }, + "node_modules/concurrently/node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, + "node_modules/concurrently/node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "engines": { + "node": ">=12" + } + }, + "node_modules/concurrently/node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "license": "ISC", + "engines": { + "node": ">=12" } }, "node_modules/config-chain": { @@ -12160,12 +10240,6 @@ "proto-list": "~1.2.1" } }, - "node_modules/config-chain/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "license": "ISC" - }, "node_modules/configstore": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/configstore/-/configstore-5.0.1.tgz", @@ -12272,87 +10346,6 @@ "copyup": "copyfiles" } }, - "node_modules/copyfiles/node_modules/brace-expansion": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/copyfiles/node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "node_modules/copyfiles/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/copyfiles/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/copyfiles/node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "license": "MIT", - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/copyfiles/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "license": "ISC", - "engines": { - "node": ">=10" - } - }, "node_modules/core-js-pure": { "version": "3.48.0", "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.48.0.tgz", @@ -12608,12 +10601,12 @@ "license": "MIT" }, "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", "license": "MIT", "dependencies": { - "ms": "2.1.2" + "ms": "^2.1.3" }, "engines": { "node": ">=6.0" @@ -12625,9 +10618,9 @@ } }, "node_modules/decompress-response": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-7.0.0.tgz", - "integrity": "sha512-6IvPrADQyyPGLpMnUh6kfKiqy7SrbXbjoUuZ90WMBJKErzv2pCiwlGEXjRX9/54OnTq+XFVnkOnOMzclLI5aEA==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", "license": "MIT", "dependencies": { "mimic-response": "^3.1.0" @@ -12760,49 +10753,6 @@ "node": ">=8" } }, - "node_modules/del/node_modules/brace-expansion": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/del/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/del/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/del/node_modules/p-map": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz", @@ -12815,22 +10765,6 @@ "node": ">=8" } }, - "node_modules/del/node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", - "deprecated": "Rimraf versions prior to v4 are no longer supported", - "license": "ISC", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/delayed-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", @@ -12884,15 +10818,12 @@ } }, "node_modules/detect-indent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-7.0.2.tgz", - "integrity": "sha512-y+8xyqdGLL+6sh0tVeHcfP/QDd8gUgbasolJJpY7NgeQGSZ739bDtSiaiDgtoicy+mtYB81dKLxO9xRhCyIB3A==", + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", "license": "MIT", "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, "node_modules/detect-libc": { @@ -12978,6 +10909,26 @@ "libmime": "^2.0.3" } }, + "node_modules/dkim-signer/node_modules/iconv-lite": { + "version": "0.4.15", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz", + "integrity": "sha512-RGR+c9Lm+tLsvU57FTJJtdbv2hQw42Yl2n26tVIBaYmZzLN+EGfroUugN/z9nJf9kOXd49hBmpoGr4FEm+A4pw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dkim-signer/node_modules/libmime": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/libmime/-/libmime-2.1.3.tgz", + "integrity": "sha512-ABr2f4O+K99sypmkF/yPz2aXxUFHEZzv+iUkxItCeKZWHHXdQPpDXd6rV1kBBwL4PserzLU09EIzJ2lxC9hPfQ==", + "license": "MIT", + "dependencies": { + "iconv-lite": "0.4.15", + "libbase64": "0.1.0", + "libqp": "1.1.0" + } + }, "node_modules/dlv": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", @@ -13034,6 +10985,18 @@ "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, + "node_modules/dom-serializer/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, "node_modules/domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", @@ -13225,6 +11188,18 @@ "url": "https://github.com/fb55/encoding-sniffer?sponsor=1" } }, + "node_modules/encoding-sniffer/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/end-of-stream": { "version": "1.4.5", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz", @@ -13248,13 +11223,10 @@ } }, "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } @@ -13344,9 +11316,9 @@ "license": "MIT" }, "node_modules/esbuild": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.3.tgz", - "integrity": "sha512-Kgq0/ZsAPzKrbOjCQcjoSmPoWhlcVnGAUo7jvaLHoxW1Drto0KGkR1xBNg2Cp43b9ImvxmPEJZ9xkfcnqPsfBw==", + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", + "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", "hasInstallScript": true, "license": "MIT", "bin": { @@ -13356,29 +11328,29 @@ "node": ">=12" }, "optionalDependencies": { - "@esbuild/aix-ppc64": "0.21.3", - "@esbuild/android-arm": "0.21.3", - "@esbuild/android-arm64": "0.21.3", - "@esbuild/android-x64": "0.21.3", - "@esbuild/darwin-arm64": "0.21.3", - "@esbuild/darwin-x64": "0.21.3", - "@esbuild/freebsd-arm64": "0.21.3", - "@esbuild/freebsd-x64": "0.21.3", - "@esbuild/linux-arm": "0.21.3", - "@esbuild/linux-arm64": "0.21.3", - "@esbuild/linux-ia32": "0.21.3", - "@esbuild/linux-loong64": "0.21.3", - "@esbuild/linux-mips64el": "0.21.3", - "@esbuild/linux-ppc64": "0.21.3", - "@esbuild/linux-riscv64": "0.21.3", - "@esbuild/linux-s390x": "0.21.3", - "@esbuild/linux-x64": "0.21.3", - "@esbuild/netbsd-x64": "0.21.3", - "@esbuild/openbsd-x64": "0.21.3", - "@esbuild/sunos-x64": "0.21.3", - "@esbuild/win32-arm64": "0.21.3", - "@esbuild/win32-ia32": "0.21.3", - "@esbuild/win32-x64": "0.21.3" + "@esbuild/aix-ppc64": "0.20.2", + "@esbuild/android-arm": "0.20.2", + "@esbuild/android-arm64": "0.20.2", + "@esbuild/android-x64": "0.20.2", + "@esbuild/darwin-arm64": "0.20.2", + "@esbuild/darwin-x64": "0.20.2", + "@esbuild/freebsd-arm64": "0.20.2", + "@esbuild/freebsd-x64": "0.20.2", + "@esbuild/linux-arm": "0.20.2", + "@esbuild/linux-arm64": "0.20.2", + "@esbuild/linux-ia32": "0.20.2", + "@esbuild/linux-loong64": "0.20.2", + "@esbuild/linux-mips64el": "0.20.2", + "@esbuild/linux-ppc64": "0.20.2", + "@esbuild/linux-riscv64": "0.20.2", + "@esbuild/linux-s390x": "0.20.2", + "@esbuild/linux-x64": "0.20.2", + "@esbuild/netbsd-x64": "0.20.2", + "@esbuild/openbsd-x64": "0.20.2", + "@esbuild/sunos-x64": "0.20.2", + "@esbuild/win32-arm64": "0.20.2", + "@esbuild/win32-ia32": "0.20.2", + "@esbuild/win32-x64": "0.20.2" } }, "node_modules/esbuild-loader": { @@ -13401,54 +11373,6 @@ "webpack": "^4.40.0 || ^5.0.0" } }, - "node_modules/esbuild-loader/node_modules/@esbuild/android-arm": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.17.tgz", - "integrity": "sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/android-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz", - "integrity": "sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/android-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.17.tgz", - "integrity": "sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, "node_modules/esbuild-loader/node_modules/@esbuild/darwin-arm64": { "version": "0.16.17", "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz", @@ -13465,294 +11389,6 @@ "node": ">=12" } }, - "node_modules/esbuild-loader/node_modules/@esbuild/darwin-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz", - "integrity": "sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/freebsd-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz", - "integrity": "sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/freebsd-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz", - "integrity": "sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/linux-arm": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz", - "integrity": "sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/linux-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz", - "integrity": "sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/linux-ia32": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz", - "integrity": "sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/linux-loong64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz", - "integrity": "sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==", - "cpu": [ - "loong64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/linux-mips64el": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz", - "integrity": "sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==", - "cpu": [ - "mips64el" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/linux-ppc64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz", - "integrity": "sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/linux-riscv64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz", - "integrity": "sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==", - "cpu": [ - "riscv64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/linux-s390x": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz", - "integrity": "sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==", - "cpu": [ - "s390x" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/linux-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz", - "integrity": "sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/netbsd-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz", - "integrity": "sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/openbsd-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz", - "integrity": "sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/sunos-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz", - "integrity": "sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/win32-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz", - "integrity": "sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/win32-ia32": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz", - "integrity": "sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/esbuild-loader/node_modules/@esbuild/win32-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz", - "integrity": "sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, "node_modules/esbuild-loader/node_modules/esbuild": { "version": "0.16.17", "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.16.17.tgz", @@ -13802,6 +11438,60 @@ "esbuild": ">=0.12 <1" } }, + "node_modules/esbuild-register/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.3.tgz", + "integrity": "sha512-U3fuQ0xNiAkXOmQ6w5dKpEvXQRSpHOnbw7gEfHCRXPeTKW9sBzVck6C5Yneb8LfJm0l6le4NQfkNPnWMSlTFUQ==", + "cpu": [ + "arm64" + ], + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "peer": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild-register/node_modules/esbuild": { + "version": "0.21.3", + "hasInstallScript": true, + "license": "MIT", + "peer": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.3", + "@esbuild/android-arm": "0.21.3", + "@esbuild/android-arm64": "0.21.3", + "@esbuild/android-x64": "0.21.3", + "@esbuild/darwin-arm64": "0.21.3", + "@esbuild/darwin-x64": "0.21.3", + "@esbuild/freebsd-arm64": "0.21.3", + "@esbuild/freebsd-x64": "0.21.3", + "@esbuild/linux-arm": "0.21.3", + "@esbuild/linux-arm64": "0.21.3", + "@esbuild/linux-ia32": "0.21.3", + "@esbuild/linux-loong64": "0.21.3", + "@esbuild/linux-mips64el": "0.21.3", + "@esbuild/linux-ppc64": "0.21.3", + "@esbuild/linux-riscv64": "0.21.3", + "@esbuild/linux-s390x": "0.21.3", + "@esbuild/linux-x64": "0.21.3", + "@esbuild/netbsd-x64": "0.21.3", + "@esbuild/openbsd-x64": "0.21.3", + "@esbuild/sunos-x64": "0.21.3", + "@esbuild/win32-arm64": "0.21.3", + "@esbuild/win32-ia32": "0.21.3", + "@esbuild/win32-x64": "0.21.3" + } + }, "node_modules/escalade": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", @@ -13850,16 +11540,6 @@ "source-map": "~0.6.1" } }, - "node_modules/escodegen/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", @@ -13984,6 +11664,18 @@ "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, + "node_modules/execa/node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/expand-template": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", @@ -14025,18 +11717,6 @@ "node": ">=4" } }, - "node_modules/external-editor/node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/extract-zip": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", @@ -14057,21 +11737,6 @@ "@types/yauzl": "^2.9.1" } }, - "node_modules/extract-zip/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "license": "MIT", - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", @@ -14112,6 +11777,22 @@ "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", "license": "MIT" }, + "node_modules/fast-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.0.tgz", + "integrity": "sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause" + }, "node_modules/fast-xml-parser": { "version": "5.3.4", "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-5.3.4.tgz", @@ -14203,15 +11884,16 @@ "license": "MIT" }, "node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "license": "MIT", "dependencies": { - "locate-path": "^3.0.0" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=6" + "node": ">=8" } }, "node_modules/find-yarn-workspace-root2": { @@ -14339,119 +12021,6 @@ "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/fork-ts-checker-webpack-plugin": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-8.0.0.tgz", - "integrity": "sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==", - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.16.7", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cosmiconfig": "^7.0.1", - "deepmerge": "^4.2.2", - "fs-extra": "^10.0.0", - "memfs": "^3.4.1", - "minimatch": "^3.0.4", - "node-abort-controller": "^3.0.1", - "schema-utils": "^3.1.1", - "semver": "^7.3.5", - "tapable": "^2.2.1" - }, - "engines": { - "node": ">=12.13.0", - "yarn": ">=1.0.0" - }, - "peerDependencies": { - "typescript": ">3.6.0", - "webpack": "^5.11.0" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "license": "MIT", - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/brace-expansion": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "license": "MIT" - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "license": "MIT", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, "node_modules/form-data": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.5.tgz", @@ -14483,6 +12052,30 @@ "url": "https://ko-fi.com/tunnckoCore/commissions" } }, + "node_modules/formidable/node_modules/@paralleldrive/cuid2": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@paralleldrive/cuid2/-/cuid2-2.3.1.tgz", + "integrity": "sha512-XO7cAxhnTZl0Yggq6jOgjiOHhbgcO4NqFqwSmQpjK3b6TEE6Uj/jfSk6wzYyemh3+I0sHirKSetjQwn5cZktFw==", + "license": "MIT", + "dependencies": { + "@noble/hashes": "^1.1.5" + } + }, + "node_modules/formidable/node_modules/qs": { + "version": "6.14.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz", + "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/formik": { "version": "2.4.5", "resolved": "https://registry.npmjs.org/formik/-/formik-2.4.5.tgz", @@ -14517,6 +12110,12 @@ "node": ">=0.10.0" } }, + "node_modules/formik/node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, "node_modules/fractional-indexing": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/fractional-indexing/-/fractional-indexing-3.2.0.tgz", @@ -14622,7 +12221,6 @@ "version": "2.3.3", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "hasInstallScript": true, "license": "MIT", "optional": true, "os": [ @@ -14712,27 +12310,19 @@ "node": ">=14.0.0" } }, - "node_modules/get-it/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/get-it/node_modules/decompress-response": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-7.0.0.tgz", + "integrity": "sha512-6IvPrADQyyPGLpMnUh6kfKiqy7SrbXbjoUuZ90WMBJKErzv2pCiwlGEXjRX9/54OnTq+XFVnkOnOMzclLI5aEA==", "license": "MIT", "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "mimic-response": "^3.1.0" }, "engines": { - "node": ">= 6" - } - }, - "node_modules/get-it/node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/get-it/node_modules/through2": { @@ -14803,12 +12393,15 @@ } }, "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" @@ -14869,23 +12462,20 @@ "license": "MIT" }, "node_modules/glob": { - "version": "10.3.10", - "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", - "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", - "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "license": "ISC", "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^2.3.5", - "minimatch": "^9.0.1", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", - "path-scurry": "^1.10.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=16 || 14 >=14.17" + "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -14956,12 +12546,6 @@ "node": ">=0.10.0" } }, - "node_modules/global-prefix/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "license": "ISC" - }, "node_modules/global-prefix/node_modules/which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", @@ -15009,49 +12593,6 @@ "node": ">=8" } }, - "node_modules/globby/node_modules/brace-expansion": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/globby/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/globby/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/gopd": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", @@ -15089,21 +12630,6 @@ "url": "https://github.com/sindresorhus/got?sponsor=1" } }, - "node_modules/got/node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "license": "MIT", - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", @@ -15145,6 +12671,18 @@ "koa": ">=2.0.0" } }, + "node_modules/grant/node_modules/jwa": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz", + "integrity": "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==", + "license": "MIT", + "optional": true, + "dependencies": { + "buffer-equal-constant-time": "^1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, "node_modules/grant/node_modules/jwk-to-pem": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/jwk-to-pem/-/jwk-to-pem-2.0.7.tgz", @@ -15157,6 +12695,32 @@ "safe-buffer": "^5.0.1" } }, + "node_modules/grant/node_modules/jws": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.1.tgz", + "integrity": "sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==", + "license": "MIT", + "optional": true, + "dependencies": { + "jwa": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/grant/node_modules/qs": { + "version": "6.14.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz", + "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/gzip-size": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", @@ -15193,15 +12757,6 @@ "uglify-js": "^3.1.4" } }, - "node_modules/handlebars/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", @@ -15402,6 +12957,45 @@ "node": ">=12" } }, + "node_modules/html-minifier-terser/node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "license": "MIT", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/html-minifier-terser/node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/html-minifier-terser/node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "license": "MIT", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/html-minifier-terser/node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "node_modules/html-webpack-plugin": { "version": "5.6.0", "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.0.tgz", @@ -15434,6 +13028,12 @@ } } }, + "node_modules/html-webpack-plugin/node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, "node_modules/htmlparser2": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-10.1.0.tgz", @@ -15478,16 +13078,13 @@ "node": ">= 0.8" } }, - "node_modules/http-assert/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } + "node_modules/http-cache-semantics": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", + "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==", + "license": "BSD-2-Clause" }, - "node_modules/http-assert/node_modules/http-errors": { + "node_modules/http-errors": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", @@ -15503,37 +13100,15 @@ "node": ">= 0.6" } }, - "node_modules/http-assert/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "node_modules/http-errors/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", "license": "MIT", "engines": { "node": ">= 0.6" } }, - "node_modules/http-cache-semantics": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", - "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==", - "license": "BSD-2-Clause" - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", - "license": "MIT", - "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.8" - } - }, "node_modules/http-proxy-agent": { "version": "7.0.2", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", @@ -15599,12 +13174,12 @@ } }, "node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "license": "MIT", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "safer-buffer": ">= 2.1.2 < 3" }, "engines": { "node": ">=0.10.0" @@ -15666,28 +13241,6 @@ "minimatch": "^3.0.4" } }, - "node_modules/ignore-walk/node_modules/brace-expansion": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/ignore-walk/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/immer": { "version": "9.0.21", "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.21.tgz", @@ -15763,7 +13316,6 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "license": "ISC", "dependencies": { "once": "^1.3.0", @@ -15777,13 +13329,10 @@ "license": "ISC" }, "node_modules/ini": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.2.tgz", - "integrity": "sha512-AMB1mvwR1pyBFY/nSevUX6y8nJWS63/SzUKD3JyQn97s4xgIdgQPT75IRouIiBAN4yLQBUShNYVW0+UG25daCw==", - "license": "ISC", - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "license": "ISC" }, "node_modules/inquirer": { "version": "8.2.5", @@ -15811,6 +13360,12 @@ "node": ">=12.0.0" } }, + "node_modules/inquirer/node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, "node_modules/interpret": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", @@ -16261,21 +13816,21 @@ "node": ">= 10.13.0" } }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/jest-worker/node_modules/@types/node": { + "version": "25.2.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-25.2.3.tgz", + "integrity": "sha512-m0jEgYlYz+mDJZ2+F4v8D1AyQb+QzsNqRuI7xg1VQX/KlKS0qT9r1Mo16yo5F/MtifXFgaofIFsdFMox2SxIbQ==", "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "undici-types": "~7.16.0" } }, + "node_modules/jest-worker/node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", + "license": "MIT" + }, "node_modules/jju": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", @@ -16313,32 +13868,22 @@ "license": "MIT" }, "node_modules/js-yaml": { - "version": "3.14.2", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz", - "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==", + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", "license": "MIT", "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "node_modules/js-yaml/node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "license": "MIT", - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/js-yaml/node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "license": "BSD-3-Clause" + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" }, "node_modules/jsesc": { "version": "3.1.0", @@ -16428,7 +13973,13 @@ "npm": ">=6" } }, - "node_modules/jsonwebtoken/node_modules/jwa": { + "node_modules/jsonwebtoken/node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, + "node_modules/jwa": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/jwa/-/jwa-1.4.2.tgz", "integrity": "sha512-eeH5JO+21J78qMvTIDdBXidBd6nG2kZjg5Ohz/1fpa28Z4CcsWUzJ1ZZyFq/3z3N17aZy+ZuBoHljASbL1WfOw==", @@ -16439,28 +13990,6 @@ "safe-buffer": "^5.0.1" } }, - "node_modules/jsonwebtoken/node_modules/jws": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.3.tgz", - "integrity": "sha512-byiJ0FLRdLdSVSReO/U4E7RoEyOCKnEnEPMjq3HxWtvzLsV08/i5RQKsFVNkCldrCaPr2vDNAOMsfs8T/Hze7g==", - "license": "MIT", - "dependencies": { - "jwa": "^1.4.2", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/jwa": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz", - "integrity": "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==", - "license": "MIT", - "optional": true, - "dependencies": { - "buffer-equal-constant-time": "^1.0.1", - "ecdsa-sig-formatter": "1.0.11", - "safe-buffer": "^5.0.1" - } - }, "node_modules/jwk-to-pem": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/jwk-to-pem/-/jwk-to-pem-2.0.5.tgz", @@ -16490,13 +14019,12 @@ } }, "node_modules/jws": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.1.tgz", - "integrity": "sha512-EKI/M/yqPncGUUh44xz0PxSidXFr/+r0pA70+gIYhjv+et7yxM+s29Y+VGDkovRofQem0fs7Uvf4+YmAdyRduA==", + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/jws/-/jws-3.2.3.tgz", + "integrity": "sha512-byiJ0FLRdLdSVSReO/U4E7RoEyOCKnEnEPMjq3HxWtvzLsV08/i5RQKsFVNkCldrCaPr2vDNAOMsfs8T/Hze7g==", "license": "MIT", - "optional": true, "dependencies": { - "jwa": "^2.0.1", + "jwa": "^1.4.2", "safe-buffer": "^5.0.1" } }, @@ -16599,10 +14127,45 @@ "node": ">=14" } }, + "node_modules/knex/node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/knex/node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, + "node_modules/knex/node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" + }, + "node_modules/knex/node_modules/pg-connection-string": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.1.tgz", + "integrity": "sha512-w6ZzNu6oMmIzEAYVw+RLK0+nqHPt8K3ZnknKi+g48Ak2pr3dtljJW3o+D/n2zzCG07Zoe9VOX3aiKpj+BN0pjg==", + "license": "MIT" + }, "node_modules/koa": { - "version": "2.16.3", - "resolved": "https://registry.npmjs.org/koa/-/koa-2.16.3.tgz", - "integrity": "sha512-zPPuIt+ku1iCpFBRwseMcPYQ1cJL8l60rSmKeOuGfOXyE6YnTBmf2aEFNL2HQGrD0cPcLO/t+v9RTgC+fwEh/g==", + "version": "2.15.2", + "resolved": "https://registry.npmjs.org/koa/-/koa-2.15.2.tgz", + "integrity": "sha512-MXTeZH3M6AJ8ukW2QZ8wqO3Dcdfh2WRRmjCBkEP+NhKNCiqlO5RDqHmSnsyNrbRJrdjyvIGSJho4vQiWgQJSVA==", "license": "MIT", "dependencies": { "accepts": "^1.3.5", @@ -16668,40 +14231,6 @@ "node": ">= 12" } }, - "node_modules/koa-compress/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/koa-compress/node_modules/http-errors": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", - "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", - "license": "MIT", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/koa-compress/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/koa-convert": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/koa-convert/-/koa-convert-2.0.0.tgz", @@ -16747,29 +14276,6 @@ "request-ip": "3.3.0" } }, - "node_modules/koa-ip/node_modules/debug": { - "version": "4.4.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", - "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", - "license": "MIT", - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/koa-ip/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "license": "MIT" - }, "node_modules/koa-is-json": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/koa-is-json/-/koa-is-json-1.0.0.tgz", @@ -16814,40 +14320,6 @@ "node": ">= 8" } }, - "node_modules/koa-send/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/koa-send/node_modules/http-errors": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", - "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", - "license": "MIT", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/koa-send/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/koa-session": { "version": "6.4.0", "resolved": "https://registry.npmjs.org/koa-session/-/koa-session-6.4.0.tgz", @@ -16885,40 +14357,6 @@ "ms": "^2.1.1" } }, - "node_modules/koa/node_modules/http-errors": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.8.1.tgz", - "integrity": "sha512-Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g==", - "license": "MIT", - "dependencies": { - "depd": "~1.1.2", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.1" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/koa/node_modules/http-errors/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/koa/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/koa2-ratelimit": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/koa2-ratelimit/-/koa2-ratelimit-1.1.3.tgz", @@ -16957,23 +14395,23 @@ "license": "MIT" }, "node_modules/libmime": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/libmime/-/libmime-2.1.3.tgz", - "integrity": "sha512-ABr2f4O+K99sypmkF/yPz2aXxUFHEZzv+iUkxItCeKZWHHXdQPpDXd6rV1kBBwL4PserzLU09EIzJ2lxC9hPfQ==", + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/libmime/-/libmime-2.1.0.tgz", + "integrity": "sha512-4be2R6/jOasyPTw0BkpIZBVk2cElqjdIdS0PRPhbOCV4wWuL/ZcYYpN1BCTVB+6eIQ0uuAwp5hQTHFrM5Joa8w==", "license": "MIT", "dependencies": { - "iconv-lite": "0.4.15", + "iconv-lite": "0.4.13", "libbase64": "0.1.0", "libqp": "1.1.0" } }, "node_modules/libmime/node_modules/iconv-lite": { - "version": "0.4.15", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.15.tgz", - "integrity": "sha512-RGR+c9Lm+tLsvU57FTJJtdbv2hQw42Yl2n26tVIBaYmZzLN+EGfroUugN/z9nJf9kOXd49hBmpoGr4FEm+A4pw==", + "version": "0.4.13", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz", + "integrity": "sha512-QwVuTNQv7tXC5mMWFX5N5wGjmybjNBBD8P3BReTkPmipoxTUFgWM2gXNvldHQr6T14DH0Dh6qBVg98iJt7u4mQ==", "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=0.8.0" } }, "node_modules/libqp": { @@ -17036,6 +14474,19 @@ "node": ">=6" } }, + "node_modules/load-yaml-file/node_modules/js-yaml": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.2.tgz", + "integrity": "sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, "node_modules/loader-runner": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.1.tgz", @@ -17064,22 +14515,21 @@ } }, "node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "license": "MIT", "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" + "p-locate": "^4.1.0" }, "engines": { - "node": ">=6" + "node": ">=8" } }, "node_modules/lodash": { - "version": "4.17.23", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", - "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "license": "MIT" }, "node_modules/lodash-es": { @@ -17104,7 +14554,6 @@ "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==", - "deprecated": "This package is deprecated. Use the optional chaining (?.) operator instead.", "license": "MIT" }, "node_modules/lodash.isplainobject": { @@ -17247,33 +14696,12 @@ "version": "3.12.0", "resolved": "https://registry.npmjs.org/mailcomposer/-/mailcomposer-3.12.0.tgz", "integrity": "sha512-zBeDoKUTNI8IAsazoMQFt3eVSVRtDtgrvBjBVdBjxDEX+5KLlKtEFCrBXnxPhs8aTYufUS1SmbFnGpjHS53deg==", - "deprecated": "This project is unmaintained", "license": "MIT", "dependencies": { "buildmail": "3.10.0", "libmime": "2.1.0" } }, - "node_modules/mailcomposer/node_modules/iconv-lite": { - "version": "0.4.13", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz", - "integrity": "sha512-QwVuTNQv7tXC5mMWFX5N5wGjmybjNBBD8P3BReTkPmipoxTUFgWM2gXNvldHQr6T14DH0Dh6qBVg98iJt7u4mQ==", - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/mailcomposer/node_modules/libmime": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/libmime/-/libmime-2.1.0.tgz", - "integrity": "sha512-4be2R6/jOasyPTw0BkpIZBVk2cElqjdIdS0PRPhbOCV4wWuL/ZcYYpN1BCTVB+6eIQ0uuAwp5hQTHFrM5Joa8w==", - "license": "MIT", - "dependencies": { - "iconv-lite": "0.4.13", - "libbase64": "0.1.0", - "libqp": "1.1.0" - } - }, "node_modules/make-dir": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", @@ -17389,6 +14817,12 @@ "integrity": "sha512-E32m0nV9iyhRR7CrhnzL5msqic7rL1juWre6TQNxsnApg7Uf+F97JOKxUijg5YwXz86lZ0mqfOnutoryyNdntQ==", "license": "MIT" }, + "node_modules/markdown-it/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, "node_modules/markdown-it/node_modules/entities": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", @@ -17411,9 +14845,9 @@ } }, "node_modules/match-sorter": { - "version": "6.3.4", - "resolved": "https://registry.npmjs.org/match-sorter/-/match-sorter-6.3.4.tgz", - "integrity": "sha512-jfZW7cWS5y/1xswZo8VBOdudUiSd9nifYRWphc9M5D/ee4w4AoXLgBEdRbgVaxbMuagBPeUC5y2Hi8DO6o9aDg==", + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/match-sorter/-/match-sorter-6.4.0.tgz", + "integrity": "sha512-d4664ahzdL1QTTvmK1iI0JsrxWeJ6gn33qkYtnPg3mcn+naBLtXSgSPOe+X2vUgtgGwaAk3eiaj7gwKjjMAq+Q==", "license": "MIT", "dependencies": { "@babel/runtime": "^7.23.8", @@ -17469,9 +14903,9 @@ } }, "node_modules/memfs": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", - "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.6.0.tgz", + "integrity": "sha512-EGowvkkgbMcIChjMTMkESFDbZeSh8xZ7kNSF0hAiAN4Jh6jgHCRS0Ga/+C8y6Au+oqpezRHCfPsmJ2+DwAgiwQ==", "license": "Unlicense", "dependencies": { "fs-monkey": "^1.0.4" @@ -17481,9 +14915,9 @@ } }, "node_modules/memoize-one": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", - "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==", + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", + "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==", "license": "MIT" }, "node_modules/merge-stream": { @@ -17530,9 +14964,9 @@ "license": "MIT" }, "node_modules/mime-db": { - "version": "1.54.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", - "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "license": "MIT", "engines": { "node": ">= 0.6" @@ -17550,15 +14984,6 @@ "node": ">= 0.6" } }, - "node_modules/mime-types/node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", @@ -17624,18 +15049,25 @@ "license": "MIT" }, "node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "license": "ISC", "dependencies": { - "brace-expansion": "^2.0.1" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": "*" + } + }, + "node_modules/minimatch/node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, "node_modules/minimist": { @@ -17756,9 +15188,9 @@ } }, "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "license": "MIT" }, "node_modules/multistream": { @@ -17785,29 +15217,6 @@ "readable-stream": "^3.6.0" } }, - "node_modules/multistream/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/multistream/node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, "node_modules/mute-stream": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", @@ -17815,9 +15224,9 @@ "license": "ISC" }, "node_modules/mux-embed": { - "version": "5.16.1", - "resolved": "https://registry.npmjs.org/mux-embed/-/mux-embed-5.16.1.tgz", - "integrity": "sha512-XWeOG/nzrfRjdyDajW9VNiP0FuKZhEIHMh8Ybpo8uudQByRSOKH8qOaL+MEGdm7KAHzJunwoyYNodD059Spw/A==", + "version": "5.17.3", + "resolved": "https://registry.npmjs.org/mux-embed/-/mux-embed-5.17.3.tgz", + "integrity": "sha512-qyFOqAVJ0+Tj4NFAUWnW1mbVkyQ8OsIup1YNMHspkvOUOGE3POP4Y3dhlf14jaYz5ZCHZM8XkF5f6v59rU7goA==", "license": "MIT" }, "node_modules/mz": { @@ -17979,6 +15388,12 @@ "node": ">=8.0.0" } }, + "node_modules/node-plop/node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, "node_modules/node-plop/node_modules/mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", @@ -18081,16 +15496,6 @@ "url": "https://opencollective.com/nodemon" } }, - "node_modules/nodemon/node_modules/brace-expansion": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, "node_modules/nodemon/node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", @@ -18100,18 +15505,6 @@ "node": ">=4" } }, - "node_modules/nodemon/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/nodemon/node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", @@ -18134,6 +15527,24 @@ "readable-stream": "~1.0.31" } }, + "node_modules/noms/node_modules/readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" + } + }, + "node_modules/noms/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", + "license": "MIT" + }, "node_modules/normalize-package-data": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", @@ -18209,49 +15620,6 @@ "node": ">=10" } }, - "node_modules/npm-packlist/node_modules/brace-expansion": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/npm-packlist/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm-packlist/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", @@ -18512,15 +15880,15 @@ } }, "node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "license": "MIT", "dependencies": { - "p-limit": "^2.0.0" + "p-limit": "^2.2.0" }, "engines": { - "node": ">=6" + "node": ">=8" } }, "node_modules/p-map": { @@ -18597,6 +15965,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, "node_modules/package-json/node_modules/registry-auth-token": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.2.tgz", @@ -18784,32 +16158,13 @@ } }, "node_modules/pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz", + "integrity": "sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==", "license": "MIT", "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/pascal-case/node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/pascal-case/node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "license": "MIT", - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" + "camel-case": "^3.0.0", + "upper-case-first": "^1.1.0" } }, "node_modules/passport": { @@ -18859,12 +16214,12 @@ } }, "node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "license": "MIT", "engines": { - "node": ">=4" + "node": ">=8" } }, "node_modules/path-is-absolute": { @@ -18998,9 +16353,9 @@ "optional": true }, "node_modules/pg-connection-string": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.6.1.tgz", - "integrity": "sha512-w6ZzNu6oMmIzEAYVw+RLK0+nqHPt8K3ZnknKi+g48Ak2pr3dtljJW3o+D/n2zzCG07Zoe9VOX3aiKpj+BN0pjg==", + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.11.0.tgz", + "integrity": "sha512-kecgoJwhOpxYU21rZjULrmrBJ698U2RxXofKVzOn5UDj61BPj/qMb7diYUR1nLScCDbrztQFl1TaQZT0t1EtzQ==", "license": "MIT" }, "node_modules/pg-int8": { @@ -19043,12 +16398,6 @@ "node": ">=4" } }, - "node_modules/pg/node_modules/pg-connection-string": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/pg-connection-string/-/pg-connection-string-2.11.0.tgz", - "integrity": "sha512-kecgoJwhOpxYU21rZjULrmrBJ698U2RxXofKVzOn5UDj61BPj/qMb7diYUR1nLScCDbrztQFl1TaQZT0t1EtzQ==", - "license": "MIT" - }, "node_modules/pgpass": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/pgpass/-/pgpass-1.0.5.tgz", @@ -19097,52 +16446,6 @@ "node": ">=8" } }, - "node_modules/pkg-dir/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/pkg-dir/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/pkg-up": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", @@ -19155,6 +16458,52 @@ "node": ">=8" } }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, "node_modules/player.style": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/player.style/-/player.style-0.0.8.tgz", @@ -19171,6 +16520,15 @@ "media-chrome": "^4.1.0" } }, + "node_modules/player.style/node_modules/media-chrome": { + "version": "4.17.2", + "resolved": "https://registry.npmjs.org/media-chrome/-/media-chrome-4.17.2.tgz", + "integrity": "sha512-o/IgiHx0tdSVwRxxqF5H12FK31A/A8T71sv3KdAvh7b6XeBS9dXwqvIFwlR9kdEuqg3n7xpmRIuL83rmYq8FTg==", + "license": "MIT", + "dependencies": { + "ce-la-react": "^0.3.2" + } + }, "node_modules/plop": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/plop/-/plop-4.0.1.tgz", @@ -19233,6 +16591,21 @@ "integrity": "sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==", "license": "MIT" }, + "node_modules/plop/node_modules/cli-cursor": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", + "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", + "license": "MIT", + "dependencies": { + "restore-cursor": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/plop/node_modules/cli-width": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz", @@ -19271,6 +16644,15 @@ "node": ">=18" } }, + "node_modules/plop/node_modules/inquirer/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/plop/node_modules/inquirer/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -19287,6 +16669,76 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, + "node_modules/plop/node_modules/inquirer/node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/plop/node_modules/inquirer/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/plop/node_modules/inquirer/node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/plop/node_modules/inquirer/node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/plop/node_modules/inquirer/node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/plop/node_modules/inquirer/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/plop/node_modules/inquirer/node_modules/ora": { "version": "5.4.1", "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", @@ -19310,6 +16762,51 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/plop/node_modules/inquirer/node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/plop/node_modules/inquirer/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "license": "ISC" + }, + "node_modules/plop/node_modules/inquirer/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/plop/node_modules/inquirer/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/plop/node_modules/interpret": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", @@ -19319,6 +16816,30 @@ "node": ">=10.13.0" } }, + "node_modules/plop/node_modules/is-interactive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", + "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/plop/node_modules/is-unicode-supported": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", + "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/plop/node_modules/isbinaryfile": { "version": "5.0.7", "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-5.0.7.tgz", @@ -19331,6 +16852,34 @@ "url": "https://github.com/sponsors/gjtorikian/" } }, + "node_modules/plop/node_modules/log-symbols": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-6.0.0.tgz", + "integrity": "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==", + "license": "MIT", + "dependencies": { + "chalk": "^5.3.0", + "is-unicode-supported": "^1.3.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/plop/node_modules/log-symbols/node_modules/is-unicode-supported": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", + "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/plop/node_modules/mute-stream": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz", @@ -19399,105 +16948,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/plop/node_modules/ora/node_modules/cli-cursor": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", - "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", - "license": "MIT", - "dependencies": { - "restore-cursor": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/plop/node_modules/ora/node_modules/is-interactive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", - "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/plop/node_modules/ora/node_modules/is-unicode-supported": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", - "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/plop/node_modules/ora/node_modules/log-symbols": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-6.0.0.tgz", - "integrity": "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==", - "license": "MIT", - "dependencies": { - "chalk": "^5.3.0", - "is-unicode-supported": "^1.3.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/plop/node_modules/ora/node_modules/log-symbols/node_modules/is-unicode-supported": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", - "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/plop/node_modules/ora/node_modules/string-width": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", - "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", - "license": "MIT", - "dependencies": { - "emoji-regex": "^10.3.0", - "get-east-asian-width": "^1.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/plop/node_modules/ora/node_modules/strip-ansi": { - "version": "7.1.2", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", - "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, "node_modules/plop/node_modules/restore-cursor": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz", @@ -19535,6 +16985,50 @@ "url": "https://github.com/sponsors/isaacs" } }, + "node_modules/plop/node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/plop/node_modules/strip-ansi": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.2.tgz", + "integrity": "sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/plop/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/plop/node_modules/title-case": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/title-case/-/title-case-4.3.2.tgz", @@ -19555,6 +17049,47 @@ "node": ">=8" } }, + "node_modules/plop/node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/plop/node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/plop/node_modules/wrap-ansi/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/plop/node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/pluralize": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz", @@ -19744,6 +17279,24 @@ "node": ">=10" } }, + "node_modules/prebuild-install/node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "license": "ISC" + }, + "node_modules/prebuild-install/node_modules/tar-fs": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.4.tgz", + "integrity": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==", + "license": "MIT", + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, "node_modules/preferred-pm": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/preferred-pm/-/preferred-pm-3.1.2.tgz", @@ -19820,15 +17373,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/preferred-pm/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/prettier": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", @@ -19872,6 +17416,12 @@ "renderkid": "^3.0.0" } }, + "node_modules/pretty-error/node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, "node_modules/pretty-format": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", @@ -20074,29 +17624,6 @@ "node": ">=18" } }, - "node_modules/puppeteer-core/node_modules/debug": { - "version": "4.4.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", - "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", - "license": "MIT", - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/puppeteer-core/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "license": "MIT" - }, "node_modules/puppeteer-core/node_modules/ws": { "version": "8.19.0", "resolved": "https://registry.npmjs.org/ws/-/ws-8.19.0.tgz", @@ -20144,18 +17671,6 @@ } } }, - "node_modules/puppeteer/node_modules/js-yaml": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", - "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, "node_modules/purest": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/purest/-/purest-4.0.2.tgz", @@ -20172,10 +17687,10 @@ "node": ">=12.0.0" } }, - "node_modules/qs": { - "version": "6.14.1", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.1.tgz", - "integrity": "sha512-4EK3+xJl8Ts67nLYNwqw/dsFVnCf+qR7RgXSK9jEEm9unao3njwMDdmsdvoKBKHzxd7tCYz5e5M+SnMjdtXGQQ==", + "node_modules/purest/node_modules/qs": { + "version": "6.14.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz", + "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==", "license": "BSD-3-Clause", "dependencies": { "side-channel": "^1.1.0" @@ -20187,6 +17702,21 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/qs": { + "version": "6.11.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.1.tgz", + "integrity": "sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -20272,18 +17802,6 @@ "url": "https://opencollective.com/express" } }, - "node_modules/raw-body/node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/raw-body/node_modules/statuses": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.2.tgz", @@ -20308,12 +17826,6 @@ "rc": "cli.js" } }, - "node_modules/rc/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "license": "ISC" - }, "node_modules/react": { "version": "18.3.1", "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", @@ -20621,6 +18133,12 @@ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, + "node_modules/react-select/node_modules/memoize-one": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-6.0.0.tgz", + "integrity": "sha512-rkpe71W0N0c0Xz6QD0eJETuWAJGnJ9afsl1srmwPrI+yBCkge5EycXXbYRyvL29zZVUWQCY7InPRCv3GDXuZNw==", + "license": "MIT" + }, "node_modules/react-side-effect": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/react-side-effect/-/react-side-effect-2.1.2.tgz", @@ -20685,12 +18203,6 @@ "react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/react-window/node_modules/memoize-one": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/memoize-one/-/memoize-one-5.2.1.tgz", - "integrity": "sha512-zYiwtZUcYyXKo/np96AGZAckk+FWWsUdJ3cHGGmld7+AhvcWmQyGCYUh1hc4Q/pkOhb65dQR/pqCyK0cOaHz4Q==", - "license": "MIT" - }, "node_modules/read-pkg": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", @@ -20723,52 +18235,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/read-pkg-up/node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "license": "MIT", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "license": "MIT", - "dependencies": { - "p-locate": "^4.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "license": "MIT", - "dependencies": { - "p-limit": "^2.2.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/read-pkg-up/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/read-pkg-up/node_modules/type-fest": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", @@ -20788,15 +18254,17 @@ } }, "node_modules/readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==", + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "license": "MIT", "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" } }, "node_modules/readdirp": { @@ -20952,15 +18420,6 @@ "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "node_modules/renderkid/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "license": "BSD-2-Clause", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, "node_modules/renderkid/node_modules/htmlparser2": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", @@ -20980,6 +18439,12 @@ "entities": "^2.0.0" } }, + "node_modules/renderkid/node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, "node_modules/request-compose": { "version": "2.1.7", "resolved": "https://registry.npmjs.org/request-compose/-/request-compose-2.1.7.tgz", @@ -21025,6 +18490,21 @@ "node": ">=8.0.0" } }, + "node_modules/request-oauth/node_modules/qs": { + "version": "6.14.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz", + "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==", + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.1.0" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -21158,15 +18638,6 @@ "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", "license": "ISC" }, - "node_modules/resolve-path/node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, "node_modules/resolve.exports": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", @@ -21212,18 +18683,15 @@ } }, "node_modules/rimraf": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-5.0.5.tgz", - "integrity": "sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "license": "ISC", "dependencies": { - "glob": "^10.3.7" + "glob": "^7.1.3" }, "bin": { - "rimraf": "dist/esm/bin.mjs" - }, - "engines": { - "node": ">=14" + "rimraf": "bin.js" }, "funding": { "url": "https://github.com/sponsors/isaacs" @@ -21246,6 +18714,12 @@ "node": ">=8.0" } }, + "node_modules/roarr/node_modules/sprintf-js": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", + "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", + "license": "BSD-3-Clause" + }, "node_modules/rollup": { "version": "4.57.1", "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.57.1.tgz", @@ -21323,9 +18797,9 @@ } }, "node_modules/rxjs": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", - "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", + "version": "7.8.2", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", + "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", "license": "Apache-2.0", "dependencies": { "tslib": "^2.1.0" @@ -21397,6 +18871,18 @@ "postcss": "^8.3.11" } }, + "node_modules/sanitize-html/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, "node_modules/sanitize-html/node_modules/htmlparser2": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-8.0.2.tgz", @@ -21454,13 +18940,10 @@ } }, "node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "version": "7.7.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", + "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, @@ -21568,45 +19051,6 @@ "url": "https://opencollective.com/libvips" } }, - "node_modules/sharp/node_modules/b4a": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.7.4.tgz", - "integrity": "sha512-u20zJLDaSWpxaZ+zaAkEIB2dZZ1o+DF4T/MRbmsvGp9nletHOyiai19OzX1fF8xUBYsO1bPXxODvcd0978pnug==", - "license": "Apache-2.0", - "peerDependencies": { - "react-native-b4a": "*" - }, - "peerDependenciesMeta": { - "react-native-b4a": { - "optional": true - } - } - }, - "node_modules/sharp/node_modules/tar-fs": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.1.1.tgz", - "integrity": "sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==", - "license": "MIT", - "dependencies": { - "pump": "^3.0.0", - "tar-stream": "^3.1.5" - }, - "optionalDependencies": { - "bare-fs": "^4.0.1", - "bare-path": "^3.0.0" - } - }, - "node_modules/sharp/node_modules/tar-stream": { - "version": "3.1.7", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", - "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", - "license": "MIT", - "dependencies": { - "b4a": "^1.6.4", - "fast-fifo": "^1.2.0", - "streamx": "^2.15.0" - } - }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -21781,21 +19225,6 @@ "simple-concat": "^1.0.0" } }, - "node_modules/simple-get/node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "license": "MIT", - "dependencies": { - "mimic-response": "^3.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/simple-swizzle": { "version": "0.2.4", "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.4.tgz", @@ -21897,6 +19326,12 @@ "slate": ">=0.65.3" } }, + "node_modules/slate-react/node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, "node_modules/smart-buffer": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", @@ -21979,6 +19414,18 @@ "sort-package-json": "cli.js" } }, + "node_modules/sort-package-json/node_modules/detect-indent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-7.0.2.tgz", + "integrity": "sha512-y+8xyqdGLL+6sh0tVeHcfP/QDd8gUgbasolJJpY7NgeQGSZ739bDtSiaiDgtoicy+mtYB81dKLxO9xRhCyIB3A==", + "license": "MIT", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/sort-package-json/node_modules/globby": { "version": "13.2.2", "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", @@ -21998,18 +19445,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/sort-package-json/node_modules/semver": { - "version": "7.7.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.4.tgz", - "integrity": "sha512-vFKC2IEtQnVhpT78h1Yp8wzwrf8CM+MzKMHGJZfBtzhZNycRFnXsHk6E5TxIkkMsgNS7mdX3AGB7x2QM2di4lA==", - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/sort-package-json/node_modules/slash": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", @@ -22035,12 +19470,12 @@ "license": "MIT" }, "node_modules/source-map": { - "version": "0.7.6", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.6.tgz", - "integrity": "sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { - "node": ">= 12" + "node": ">=0.10.0" } }, "node_modules/source-map-js": { @@ -22062,15 +19497,6 @@ "source-map": "^0.6.0" } }, - "node_modules/source-map-support/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/spawn-command": { "version": "0.0.2", "resolved": "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2.tgz", @@ -22118,9 +19544,9 @@ } }, "node_modules/sprintf-js": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.3.tgz", - "integrity": "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==", + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "license": "BSD-3-Clause" }, "node_modules/stack-trace": { @@ -22139,12 +19565,12 @@ "license": "MIT" }, "node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", "license": "MIT", "engines": { - "node": ">= 0.8" + "node": ">= 0.6" } }, "node_modules/stdin-discarder": { @@ -22179,29 +19605,6 @@ "readable-stream": "^3.5.0" } }, - "node_modules/stream-browserify/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/stream-browserify/node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, "node_modules/stream-chain": { "version": "2.2.5", "resolved": "https://registry.npmjs.org/stream-chain/-/stream-chain-2.2.5.tgz", @@ -22235,10 +19638,13 @@ } }, "node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", - "license": "MIT" + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } }, "node_modules/string-argv": { "version": "0.3.2", @@ -22438,15 +19844,18 @@ "license": "MIT" }, "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/supports-preserve-symlinks-flag": { @@ -22510,7 +19919,6 @@ "version": "6.2.1", "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", - "deprecated": "Old versions of tar are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", "license": "ISC", "dependencies": { "chownr": "^2.0.0", @@ -22525,22 +19933,29 @@ } }, "node_modules/tar-fs": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.4.tgz", - "integrity": "sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.1.1.tgz", + "integrity": "sha512-LZA0oaPOc2fVo82Txf3gw+AkEd38szODlptMYejQUhndHMLQ9M059uXR+AfS7DNo0NpINvSqDsvyaCrBVkptWg==", "license": "MIT", "dependencies": { - "chownr": "^1.1.1", - "mkdirp-classic": "^0.5.2", "pump": "^3.0.0", - "tar-stream": "^2.1.4" + "tar-stream": "^3.1.5" + }, + "optionalDependencies": { + "bare-fs": "^4.0.1", + "bare-path": "^3.0.0" } }, - "node_modules/tar-fs/node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", - "license": "ISC" + "node_modules/tar-fs/node_modules/tar-stream": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.7.tgz", + "integrity": "sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==", + "license": "MIT", + "dependencies": { + "b4a": "^1.6.4", + "fast-fifo": "^1.2.0", + "streamx": "^2.15.0" + } }, "node_modules/tar-stream": { "version": "2.2.0", @@ -22558,29 +19973,6 @@ "node": ">=6" } }, - "node_modules/tar-stream/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/tar-stream/node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, "node_modules/tar/node_modules/minipass": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", @@ -22658,28 +20050,14 @@ "license": "MIT" }, "node_modules/text-decoder": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.5.tgz", - "integrity": "sha512-ymKEOrjEhNE0+Gehpn2Dw59Vp2fNG0DQvCRAJpCjVqB1Pkj1AMBzDpow4H9kSa6XqO/wZrb5TLxEigx+nEaiBA==", + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/text-decoder/-/text-decoder-1.2.6.tgz", + "integrity": "sha512-27FeW5GQFDfw0FpwMQhMagB7BztOOlmjcSRi97t2oplhKVTZtp0DZbSegSaXS5IIC6mxMvBG4AR1Sgc6BX3CQg==", "license": "Apache-2.0", "dependencies": { "b4a": "^1.6.4" } }, - "node_modules/text-decoder/node_modules/b4a": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.7.4.tgz", - "integrity": "sha512-u20zJLDaSWpxaZ+zaAkEIB2dZZ1o+DF4T/MRbmsvGp9nletHOyiai19OzX1fF8xUBYsO1bPXxODvcd0978pnug==", - "license": "Apache-2.0", - "peerDependencies": { - "react-native-b4a": "*" - }, - "peerDependenciesMeta": { - "react-native-b4a": { - "optional": true - } - } - }, "node_modules/text-hex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/text-hex/-/text-hex-1.0.0.tgz", @@ -23020,6 +20398,21 @@ "typedoc": ">=0.24.0" } }, + "node_modules/typedoc/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, "node_modules/typescript": { "version": "5.3.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.3.3.tgz", @@ -23108,6 +20501,7 @@ "version": "6.21.0", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "devOptional": true, "license": "MIT" }, "node_modules/unique-string": { @@ -23240,6 +20634,26 @@ } } }, + "node_modules/use-context-selector": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/use-context-selector/-/use-context-selector-1.4.1.tgz", + "integrity": "sha512-Io2ArvcRO+6MWIhkdfMFt+WKQX+Vb++W8DS2l03z/Vw/rz3BclKpM0ynr4LYGyU85Eke+Yx5oIhTY++QR0ZDoA==", + "license": "MIT", + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": "*", + "react-native": "*", + "scheduler": ">=0.19.0" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } + } + }, "node_modules/use-isomorphic-layout-effect": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/use-isomorphic-layout-effect/-/use-isomorphic-layout-effect-1.2.1.tgz", @@ -23398,412 +20812,6 @@ } } }, - "node_modules/vite/node_modules/@esbuild/aix-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.20.2.tgz", - "integrity": "sha512-D+EBOJHXdNZcLJRBkhENNG8Wji2kgc9AZ9KiPr1JuZjsNtyHzrsfLRrY0tk2H2aoFu6RANO1y1iPPUCDYWkb5g==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", - "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", - "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/android-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", - "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/darwin-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", - "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/darwin-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", - "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", - "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/freebsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", - "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", - "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", - "cpu": [ - "arm" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", - "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", - "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-loong64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", - "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", - "cpu": [ - "loong64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-mips64el": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", - "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", - "cpu": [ - "mips64el" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", - "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", - "cpu": [ - "ppc64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-riscv64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", - "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", - "cpu": [ - "riscv64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-s390x": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", - "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", - "cpu": [ - "s390x" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/linux-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", - "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/netbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", - "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/openbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", - "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/sunos-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", - "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", - "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", - "cpu": [ - "arm64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", - "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", - "cpu": [ - "ia32" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/@esbuild/win32-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", - "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", - "cpu": [ - "x64" - ], - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/vite/node_modules/esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", - "hasInstallScript": true, - "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" - } - }, "node_modules/vscode-oniguruma": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz", @@ -23982,6 +20990,12 @@ } } }, + "node_modules/webpack-dev-middleware/node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "license": "MIT" + }, "node_modules/webpack-hot-middleware": { "version": "2.26.1", "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.26.1.tgz", @@ -24003,15 +21017,6 @@ "source-map": "~0.6.1" } }, - "node_modules/webpack-sources/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/webpack/node_modules/webpack-sources": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.3.3.tgz", @@ -24025,7 +21030,6 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz", "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==", - "deprecated": "Use @exodus/bytes instead for a more spec-conformant and faster implementation", "license": "MIT", "dependencies": { "iconv-lite": "0.6.3" @@ -24034,6 +21038,18 @@ "node": ">=18" } }, + "node_modules/whatwg-encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/whatwg-mimetype": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", @@ -24071,15 +21087,6 @@ "node": ">=8.15" } }, - "node_modules/which-pm/node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/widest-line": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", @@ -24128,52 +21135,6 @@ "node": ">= 12.0.0" } }, - "node_modules/winston-transport/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/winston-transport/node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/winston/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/winston/node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, "node_modules/wordwrap": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", @@ -24330,36 +21291,6 @@ "yalc": "src/yalc.js" } }, - "node_modules/yalc/node_modules/brace-expansion": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", - "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/yalc/node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "node_modules/yalc/node_modules/detect-indent": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", - "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", - "license": "MIT", - "engines": { - "node": ">=8" - } - }, "node_modules/yalc/node_modules/fs-extra": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", @@ -24374,27 +21305,6 @@ "node": ">=6 <7 || >=8" } }, - "node_modules/yalc/node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Old versions of glob are not supported, and contain widely publicized security vulnerabilities, which have been fixed in the current version. Please update. Support for old versions may be purchased (at exorbitant rates) by contacting i@izs.me", - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, "node_modules/yalc/node_modules/ini": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", @@ -24413,18 +21323,6 @@ "graceful-fs": "^4.1.6" } }, - "node_modules/yalc/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, "node_modules/yalc/node_modules/universalify": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", @@ -24434,33 +21332,6 @@ "node": ">= 4.0.0" } }, - "node_modules/yalc/node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "license": "MIT", - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/yalc/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "license": "ISC", - "engines": { - "node": ">=10" - } - }, "node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", @@ -24477,30 +21348,30 @@ } }, "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "license": "MIT", "dependencies": { - "cliui": "^8.0.1", + "cliui": "^7.0.2", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", - "string-width": "^4.2.3", + "string-width": "^4.2.0", "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" + "yargs-parser": "^20.2.2" }, "engines": { - "node": ">=12" + "node": ">=10" } }, "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "license": "ISC", "engines": { - "node": ">=12" + "node": ">=10" } }, "node_modules/yauzl": { @@ -24564,10 +21435,16 @@ "node": ">=10" } }, + "node_modules/yup/node_modules/lodash": { + "version": "4.17.23", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.23.tgz", + "integrity": "sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==", + "license": "MIT" + }, "node_modules/zod": { - "version": "3.25.67", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.67.tgz", - "integrity": "sha512-idA2YXwpCdqUSKRCACDE6ItZD9TZzy3OZMtpfLoh6oPR47lipysRrJfjzMqFxQ3uJuUPyUeWe1r9vLH33xO/Qw==", + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", "license": "MIT", "funding": { "url": "https://github.com/sponsors/colinhacks" diff --git a/package.json b/package.json index be96d5f..e1c54b7 100644 --- a/package.json +++ b/package.json @@ -29,6 +29,7 @@ "styled-components": "^6.0.0" }, "devDependencies": { + "@types/minimatch": "^6.0.0", "@types/node": "^20", "@types/react": "^18", "@types/react-dom": "^18", diff --git a/src/extensions/documentation/documentation/1.0.0/full_documentation.json b/src/extensions/documentation/documentation/1.0.0/full_documentation.json index 1020a11..85b58b0 100644 --- a/src/extensions/documentation/documentation/1.0.0/full_documentation.json +++ b/src/extensions/documentation/documentation/1.0.0/full_documentation.json @@ -14,7 +14,7 @@ "name": "Apache 2.0", "url": "https://www.apache.org/licenses/LICENSE-2.0.html" }, - "x-generation-date": "2026-02-12T22:31:03.866Z" + "x-generation-date": "2026-02-25T21:31:27.619Z" }, "x-strapi-config": { "plugins": [ @@ -17128,7 +17128,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17157,7 +17164,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17188,7 +17202,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17208,7 +17229,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17220,7 +17248,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17243,7 +17278,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17276,7 +17318,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17296,7 +17345,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17310,7 +17366,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17328,7 +17391,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17351,7 +17421,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17362,7 +17439,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17378,7 +17462,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17405,7 +17496,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17416,7 +17514,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17432,7 +17537,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17465,7 +17577,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17476,7 +17595,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17492,7 +17618,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17506,7 +17639,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17522,7 +17662,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17539,7 +17686,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17563,7 +17717,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17574,7 +17735,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17590,7 +17758,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17604,7 +17779,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17654,7 +17836,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17666,7 +17855,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17681,7 +17877,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17694,7 +17897,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17708,7 +17918,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17758,7 +17975,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17770,7 +17994,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17796,7 +18027,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17807,7 +18045,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17823,7 +18068,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17853,7 +18105,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17864,7 +18123,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17880,7 +18146,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17909,7 +18182,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17920,7 +18200,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17936,7 +18223,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17950,7 +18244,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -17962,7 +18263,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18012,7 +18320,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18024,7 +18339,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18050,7 +18372,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18061,7 +18390,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18077,7 +18413,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18103,7 +18446,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18116,7 +18466,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18130,7 +18487,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18144,7 +18508,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18156,7 +18527,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18206,7 +18584,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18218,7 +18603,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18244,7 +18636,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18255,7 +18654,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18271,7 +18677,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18285,7 +18698,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18301,7 +18721,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18316,7 +18743,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18329,7 +18763,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18347,7 +18788,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18358,7 +18806,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18408,7 +18863,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18420,7 +18882,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18446,7 +18915,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18457,7 +18933,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18473,7 +18956,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18516,7 +19006,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18527,7 +19024,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18543,7 +19047,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18570,7 +19081,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18581,7 +19099,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18597,7 +19122,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18624,7 +19156,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18635,7 +19174,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18651,7 +19197,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18668,7 +19221,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18691,7 +19251,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18763,7 +19330,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18774,7 +19348,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18790,7 +19371,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18807,7 +19395,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18828,7 +19423,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18851,7 +19453,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18862,7 +19471,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18878,7 +19494,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18905,7 +19528,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18914,7 +19544,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18925,7 +19562,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18962,7 +19606,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18973,7 +19624,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -18989,7 +19647,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19006,7 +19671,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19021,7 +19693,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19032,7 +19711,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19055,7 +19741,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19066,7 +19759,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19082,7 +19782,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19099,7 +19806,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19119,7 +19833,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19132,7 +19853,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19147,7 +19875,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19158,7 +19893,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19169,7 +19911,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19192,7 +19941,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19203,7 +19959,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19219,7 +19982,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19246,7 +20016,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19257,7 +20034,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19273,7 +20057,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19300,7 +20091,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19311,7 +20109,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19327,7 +20132,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19343,7 +20155,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19357,7 +20176,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19369,7 +20195,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19380,7 +20213,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19430,7 +20270,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19442,7 +20289,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19468,7 +20322,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19479,7 +20340,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19495,7 +20363,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19557,7 +20432,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19578,7 +20460,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19601,7 +20490,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19612,7 +20508,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19628,7 +20531,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19645,7 +20555,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19659,7 +20576,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19673,7 +20597,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19687,7 +20618,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19696,7 +20634,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19707,7 +20652,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19722,7 +20674,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19772,7 +20731,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19784,7 +20750,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19810,7 +20783,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19821,7 +20801,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19837,7 +20824,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19867,7 +20861,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19905,7 +20906,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19916,7 +20924,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19932,7 +20947,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19970,7 +20992,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19981,7 +21010,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -19997,7 +21033,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20014,7 +21057,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20028,7 +21078,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20078,7 +21135,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20090,7 +21154,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20116,7 +21187,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20127,7 +21205,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20143,7 +21228,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20160,7 +21252,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20182,7 +21281,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20196,7 +21302,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20208,7 +21321,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20221,7 +21341,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20245,7 +21372,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20256,7 +21390,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20272,7 +21413,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20304,7 +21452,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20313,7 +21468,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20346,7 +21508,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20372,7 +21541,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20383,7 +21559,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20399,7 +21582,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20416,7 +21606,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20440,7 +21637,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20451,7 +21655,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20467,7 +21678,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20484,7 +21702,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20493,7 +21718,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20504,7 +21736,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20538,7 +21777,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20547,7 +21793,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20558,7 +21811,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20587,7 +21847,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20598,7 +21865,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20614,7 +21888,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20641,7 +21922,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20652,7 +21940,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20668,7 +21963,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20685,7 +21987,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20699,7 +22008,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20716,7 +22032,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20763,7 +22086,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20774,7 +22104,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20790,7 +22127,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20827,7 +22171,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20877,7 +22228,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20889,7 +22247,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20915,7 +22280,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20926,7 +22298,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20942,7 +22321,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20969,7 +22355,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20980,7 +22373,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -20996,7 +22396,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21025,7 +22432,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21059,7 +22473,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21109,7 +22530,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21121,7 +22549,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21147,7 +22582,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21158,7 +22600,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21174,7 +22623,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21201,7 +22657,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21212,7 +22675,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21228,7 +22698,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21256,7 +22733,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "tag": { "type": "string" @@ -21267,7 +22751,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "module": { "type": "string", @@ -21291,7 +22782,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "activityMessage": { "type": "string" @@ -21307,7 +22805,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21357,7 +22862,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21369,7 +22881,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21395,7 +22914,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21406,7 +22932,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21422,7 +22955,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21449,7 +22989,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "emailNotification": { "type": "boolean" @@ -21466,7 +23013,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "profileVisibility": { "type": "string", @@ -21587,7 +23141,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21602,7 +23163,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21614,7 +23182,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21664,7 +23239,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21676,7 +23258,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21691,7 +23280,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21704,7 +23300,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21718,7 +23321,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21768,7 +23378,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21780,7 +23397,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21806,7 +23430,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21839,7 +23470,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21859,7 +23497,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21873,7 +23518,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21891,7 +23543,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21914,7 +23573,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21925,7 +23591,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21941,7 +23614,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21968,7 +23648,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21979,7 +23666,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -21995,7 +23689,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22028,7 +23729,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22039,7 +23747,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22055,7 +23770,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22069,7 +23791,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22085,7 +23814,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22115,7 +23851,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22126,7 +23869,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22142,7 +23892,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22171,7 +23928,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22182,7 +23946,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22198,7 +23969,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22224,7 +24002,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22255,7 +24040,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22275,7 +24067,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22287,7 +24086,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22310,7 +24116,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22321,7 +24134,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22337,7 +24157,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22354,7 +24181,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22378,7 +24212,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22389,7 +24230,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22405,7 +24253,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22419,7 +24274,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22469,7 +24331,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22481,7 +24350,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22507,7 +24383,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22518,7 +24401,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22534,7 +24424,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22548,7 +24445,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22561,7 +24465,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22575,7 +24486,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22587,7 +24505,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22599,7 +24524,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22649,7 +24581,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22661,7 +24600,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22687,7 +24633,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22698,7 +24651,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22714,7 +24674,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22728,7 +24695,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22744,7 +24718,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22759,7 +24740,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22772,7 +24760,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22790,7 +24785,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22801,7 +24803,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22851,7 +24860,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22863,7 +24879,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22889,7 +24912,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22900,7 +24930,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22916,7 +24953,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22959,7 +25003,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22970,7 +25021,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -22986,7 +25044,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23013,7 +25078,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23024,7 +25096,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23040,7 +25119,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23067,7 +25153,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23078,7 +25171,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23094,7 +25194,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23108,7 +25215,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23158,7 +25272,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23170,7 +25291,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23196,7 +25324,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23207,7 +25342,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23223,7 +25365,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23285,7 +25434,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23306,7 +25462,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23329,7 +25492,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23340,7 +25510,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23356,7 +25533,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23373,7 +25557,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23382,7 +25573,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23393,7 +25591,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23430,7 +25635,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23441,7 +25653,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23457,7 +25676,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23474,7 +25700,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23489,7 +25722,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23500,7 +25740,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23523,7 +25770,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23534,7 +25788,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23550,7 +25811,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23567,7 +25835,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23581,7 +25856,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23590,7 +25872,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23601,7 +25890,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23616,7 +25912,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23666,7 +25969,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23678,7 +25988,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23704,7 +26021,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23715,7 +26039,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23731,7 +26062,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23761,7 +26099,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23799,7 +26144,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23810,7 +26162,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23826,7 +26185,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23864,7 +26230,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23875,7 +26248,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23891,7 +26271,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23908,7 +26295,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23922,7 +26316,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23972,7 +26373,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -23984,7 +26392,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24010,7 +26425,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24021,7 +26443,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24037,7 +26466,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24054,7 +26490,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24076,7 +26519,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24090,7 +26540,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24102,7 +26559,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24115,7 +26579,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24139,7 +26610,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24150,7 +26628,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24166,7 +26651,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24198,7 +26690,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24207,7 +26706,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24240,7 +26746,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24266,7 +26779,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24277,7 +26797,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24293,7 +26820,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24310,7 +26844,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24334,7 +26875,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24345,7 +26893,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24361,7 +26916,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24378,7 +26940,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24387,7 +26956,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24398,7 +26974,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24432,7 +27015,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24441,7 +27031,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24452,7 +27049,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24481,7 +27085,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24492,7 +27103,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24508,7 +27126,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24535,7 +27160,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24546,7 +27178,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24562,7 +27201,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24579,7 +27225,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24593,7 +27246,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24610,7 +27270,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24657,7 +27324,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24668,7 +27342,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24684,7 +27365,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24700,7 +27388,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24714,7 +27409,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24728,7 +27430,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24742,7 +27451,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24765,7 +27481,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24837,7 +27560,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24848,7 +27578,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24864,7 +27601,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24881,7 +27625,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24902,7 +27653,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24925,7 +27683,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24936,7 +27701,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24952,7 +27724,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24979,7 +27758,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -24993,7 +27779,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25007,7 +27800,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25027,7 +27827,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25040,7 +27847,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25055,7 +27869,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25066,7 +27887,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25077,7 +27905,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25100,7 +27935,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25111,7 +27953,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25127,7 +27976,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25154,7 +28010,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25165,7 +28028,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25181,7 +28051,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25208,7 +28085,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25219,7 +28103,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25235,7 +28126,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25249,7 +28147,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25272,7 +28177,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25283,7 +28195,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25299,7 +28218,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25407,7 +28333,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25419,7 +28352,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25469,7 +28409,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25481,7 +28428,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25496,7 +28450,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25509,7 +28470,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25523,7 +28491,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25573,7 +28548,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25585,7 +28567,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25611,7 +28600,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25644,7 +28640,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25664,7 +28667,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25678,7 +28688,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25696,7 +28713,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25719,7 +28743,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25730,7 +28761,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25746,7 +28784,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25773,7 +28818,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25784,7 +28836,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25800,7 +28859,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25833,7 +28899,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25844,7 +28917,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25860,7 +28940,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25874,7 +28961,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25890,7 +28984,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25920,7 +29021,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25931,7 +29039,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25947,7 +29062,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25976,7 +29098,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -25987,7 +29116,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26003,7 +29139,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26017,7 +29160,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26029,7 +29179,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26079,7 +29236,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26091,7 +29255,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26117,7 +29288,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26128,7 +29306,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26144,7 +29329,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26170,7 +29362,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26201,7 +29400,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26221,7 +29427,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26233,7 +29446,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26256,7 +29476,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26267,7 +29494,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26283,7 +29517,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26300,7 +29541,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26324,7 +29572,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26335,7 +29590,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26351,7 +29613,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26365,7 +29634,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26415,7 +29691,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26427,7 +29710,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26453,7 +29743,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26464,7 +29761,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26480,7 +29784,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26494,7 +29805,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26507,7 +29825,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26521,7 +29846,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26533,7 +29865,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26545,7 +29884,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26595,7 +29941,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26607,7 +29960,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26633,7 +29993,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26644,7 +30011,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26660,7 +30034,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26674,7 +30055,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26690,7 +30078,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26705,7 +30100,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26718,7 +30120,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26736,7 +30145,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26747,7 +30163,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26797,7 +30220,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26809,7 +30239,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26835,7 +30272,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26846,7 +30290,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26862,7 +30313,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26905,7 +30363,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26916,7 +30381,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26932,7 +30404,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26959,7 +30438,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26970,7 +30456,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -26986,7 +30479,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27013,7 +30513,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27024,7 +30531,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27040,7 +30554,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27054,7 +30575,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27104,7 +30632,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27116,7 +30651,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27142,7 +30684,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27153,7 +30702,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27169,7 +30725,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27231,7 +30794,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27252,7 +30822,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27275,7 +30852,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27286,7 +30870,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27302,7 +30893,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27319,7 +30917,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27328,7 +30933,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27339,7 +30951,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27376,7 +30995,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27387,7 +31013,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27403,7 +31036,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27420,7 +31060,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27435,7 +31082,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27446,7 +31100,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27469,7 +31130,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27480,7 +31148,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27496,7 +31171,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27513,7 +31195,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27527,7 +31216,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27536,7 +31232,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27547,7 +31250,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27562,7 +31272,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27612,7 +31329,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27624,7 +31348,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27650,7 +31381,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27661,7 +31399,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27677,7 +31422,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27707,7 +31459,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27745,7 +31504,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27756,7 +31522,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27772,7 +31545,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27810,7 +31590,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27821,7 +31608,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27837,7 +31631,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27854,7 +31655,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27868,7 +31676,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27918,7 +31733,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27930,7 +31752,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27956,7 +31785,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27967,7 +31803,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -27983,7 +31826,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28000,7 +31850,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28022,7 +31879,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28036,7 +31900,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28048,7 +31919,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28061,7 +31939,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28085,7 +31970,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28096,7 +31988,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28112,7 +32011,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28144,7 +32050,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28153,7 +32066,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28186,7 +32106,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28212,7 +32139,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28223,7 +32157,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28239,7 +32180,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28256,7 +32204,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28280,7 +32235,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28291,7 +32253,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28307,7 +32276,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28324,7 +32300,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28333,7 +32316,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28344,7 +32334,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28378,7 +32375,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28387,7 +32391,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28398,7 +32409,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28427,7 +32445,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28438,7 +32463,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28454,7 +32486,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28481,7 +32520,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28492,7 +32538,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28508,7 +32561,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28525,7 +32585,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28539,7 +32606,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28556,7 +32630,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28603,7 +32684,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28614,7 +32702,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28630,7 +32725,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28646,7 +32748,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28660,7 +32769,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28674,7 +32790,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28688,7 +32811,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28711,7 +32841,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28783,7 +32920,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28794,7 +32938,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28810,7 +32961,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28827,7 +32985,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28848,7 +33013,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28871,7 +33043,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28882,7 +33061,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28898,7 +33084,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28925,7 +33118,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28939,7 +33139,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28953,7 +33160,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28973,7 +33187,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -28986,7 +33207,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29001,7 +33229,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29012,7 +33247,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29023,7 +33265,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29046,7 +33295,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29057,7 +33313,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29073,7 +33336,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29100,7 +33370,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29111,7 +33388,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29127,7 +33411,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29154,7 +33445,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29165,7 +33463,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29181,7 +33486,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29200,7 +33512,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29224,7 +33543,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29235,7 +33561,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29251,7 +33584,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29389,7 +33729,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29407,7 +33754,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29422,7 +33776,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29434,7 +33795,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29484,7 +33852,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29496,7 +33871,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29511,7 +33893,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29524,7 +33913,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29538,7 +33934,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29588,7 +33991,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29600,7 +34010,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29626,7 +34043,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29659,7 +34083,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29679,7 +34110,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29693,7 +34131,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29711,7 +34156,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29734,7 +34186,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29745,7 +34204,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29761,7 +34227,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29788,7 +34261,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29799,7 +34279,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29815,7 +34302,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29848,7 +34342,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29859,7 +34360,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29875,7 +34383,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29889,7 +34404,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29905,7 +34427,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29935,7 +34464,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29946,7 +34482,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29962,7 +34505,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -29991,7 +34541,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30002,7 +34559,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30018,7 +34582,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30032,7 +34603,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30044,7 +34622,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30094,7 +34679,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30106,7 +34698,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30132,7 +34731,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30143,7 +34749,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30159,7 +34772,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30185,7 +34805,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30216,7 +34843,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30236,7 +34870,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30248,7 +34889,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30271,7 +34919,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30282,7 +34937,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30298,7 +34960,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30315,7 +34984,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30339,7 +35015,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30350,7 +35033,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30366,7 +35056,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30380,7 +35077,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30430,7 +35134,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30442,7 +35153,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30468,7 +35186,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30479,7 +35204,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30495,7 +35227,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30509,7 +35248,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30522,7 +35268,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30536,7 +35289,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30548,7 +35308,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30559,7 +35326,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30609,7 +35383,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30621,7 +35402,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30647,7 +35435,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30658,7 +35453,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30674,7 +35476,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30736,7 +35545,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30757,7 +35573,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30780,7 +35603,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30791,7 +35621,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30807,7 +35644,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30824,7 +35668,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30833,7 +35684,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30844,7 +35702,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30881,7 +35746,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30892,7 +35764,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30908,7 +35787,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30925,7 +35811,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30940,7 +35833,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30951,7 +35851,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30974,7 +35881,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -30985,7 +35899,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31001,7 +35922,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31018,7 +35946,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31032,7 +35967,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31041,7 +35983,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31052,7 +36001,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31067,7 +36023,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31117,7 +36080,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31129,7 +36099,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31155,7 +36132,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31166,7 +36150,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31182,7 +36173,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31212,7 +36210,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31250,7 +36255,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31261,7 +36273,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31277,7 +36296,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31315,7 +36341,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31326,7 +36359,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31342,7 +36382,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31359,7 +36406,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31373,7 +36427,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31423,7 +36484,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31435,7 +36503,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31461,7 +36536,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31472,7 +36554,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31488,7 +36577,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31505,7 +36601,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31527,7 +36630,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31541,7 +36651,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31553,7 +36670,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31566,7 +36690,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31590,7 +36721,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31601,7 +36739,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31617,7 +36762,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31649,7 +36801,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31658,7 +36817,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31691,7 +36857,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31717,7 +36890,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31728,7 +36908,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31744,7 +36931,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31761,7 +36955,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31785,7 +36986,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31796,7 +37004,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31812,7 +37027,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31829,7 +37051,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31838,7 +37067,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31849,7 +37085,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31883,7 +37126,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31892,7 +37142,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31903,7 +37160,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31932,7 +37196,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31943,7 +37214,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31959,7 +37237,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31986,7 +37271,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -31997,7 +37289,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32013,7 +37312,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32030,7 +37336,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32044,7 +37357,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32061,7 +37381,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32108,7 +37435,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32119,7 +37453,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32135,7 +37476,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32151,7 +37499,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32165,7 +37520,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32179,7 +37541,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32193,7 +37562,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32216,7 +37592,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32288,7 +37671,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32299,7 +37689,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32315,7 +37712,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32332,7 +37736,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32353,7 +37764,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32376,7 +37794,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32387,7 +37812,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32403,7 +37835,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32430,7 +37869,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32444,7 +37890,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32458,7 +37911,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32478,7 +37938,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32491,7 +37958,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32506,7 +37980,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32517,7 +37998,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32528,7 +38016,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32551,7 +38046,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32562,7 +38064,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32578,7 +38087,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32605,7 +38121,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32616,7 +38139,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32632,7 +38162,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32659,7 +38196,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32670,7 +38214,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32686,7 +38237,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32705,7 +38263,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32729,7 +38294,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32740,7 +38312,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32756,7 +38335,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32772,7 +38358,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32790,7 +38383,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32801,7 +38401,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32851,7 +38458,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32863,7 +38477,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32889,7 +38510,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32900,7 +38528,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32916,7 +38551,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32959,7 +38601,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32970,7 +38619,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -32986,7 +38642,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33013,7 +38676,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33024,7 +38694,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33040,7 +38717,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33054,7 +38738,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33104,7 +38795,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33116,7 +38814,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33142,7 +38847,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33153,7 +38865,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33169,7 +38888,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33212,7 +38938,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33223,7 +38956,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33239,7 +38979,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33360,7 +39107,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33375,7 +39129,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33387,7 +39148,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33437,7 +39205,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33449,7 +39224,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33464,7 +39246,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33477,7 +39266,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33491,7 +39287,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33541,7 +39344,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33553,7 +39363,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33579,7 +39396,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33612,7 +39436,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33632,7 +39463,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33646,7 +39484,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33664,7 +39509,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33687,7 +39539,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33698,7 +39557,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33714,7 +39580,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33741,7 +39614,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33752,7 +39632,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33768,7 +39655,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33801,7 +39695,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33812,7 +39713,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33828,7 +39736,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33842,7 +39757,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33858,7 +39780,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33888,7 +39817,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33899,7 +39835,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33915,7 +39858,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33944,7 +39894,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33955,7 +39912,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33971,7 +39935,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33985,7 +39956,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -33997,7 +39975,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34047,7 +40032,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34059,7 +40051,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34085,7 +40084,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34096,7 +40102,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34112,7 +40125,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34138,7 +40158,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34169,7 +40196,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34189,7 +40223,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34201,7 +40242,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34224,7 +40272,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34235,7 +40290,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34251,7 +40313,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34268,7 +40337,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34292,7 +40368,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34303,7 +40386,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34319,7 +40409,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34333,7 +40430,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34383,7 +40487,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34395,7 +40506,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34421,7 +40539,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34432,7 +40557,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34448,7 +40580,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34462,7 +40601,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34475,7 +40621,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34489,7 +40642,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34501,7 +40661,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34512,7 +40679,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34562,7 +40736,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34574,7 +40755,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34600,7 +40788,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34611,7 +40806,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34627,7 +40829,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34689,7 +40898,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34710,7 +40926,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34733,7 +40956,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34744,7 +40974,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34760,7 +40997,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34777,7 +41021,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34786,7 +41037,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34797,7 +41055,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34834,7 +41099,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34845,7 +41117,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34861,7 +41140,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34878,7 +41164,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34893,7 +41186,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34904,7 +41204,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34927,7 +41234,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34938,7 +41252,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34954,7 +41275,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34971,7 +41299,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34985,7 +41320,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -34994,7 +41336,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35005,7 +41354,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35020,7 +41376,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35070,7 +41433,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35082,7 +41452,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35108,7 +41485,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35119,7 +41503,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35135,7 +41526,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35165,7 +41563,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35203,7 +41608,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35214,7 +41626,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35230,7 +41649,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35268,7 +41694,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35279,7 +41712,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35295,7 +41735,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35312,7 +41759,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35326,7 +41780,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35376,7 +41837,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35388,7 +41856,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35414,7 +41889,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35425,7 +41907,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35441,7 +41930,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35458,7 +41954,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35480,7 +41983,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35494,7 +42004,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35506,7 +42023,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35519,7 +42043,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35543,7 +42074,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35554,7 +42092,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35570,7 +42115,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35602,7 +42154,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35611,7 +42170,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35644,7 +42210,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35670,7 +42243,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35681,7 +42261,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35697,7 +42284,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35714,7 +42308,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35738,7 +42339,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35749,7 +42357,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35765,7 +42380,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35782,7 +42404,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35791,7 +42420,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35802,7 +42438,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35836,7 +42479,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35845,7 +42495,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35856,7 +42513,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35885,7 +42549,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35896,7 +42567,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35912,7 +42590,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35939,7 +42624,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35950,7 +42642,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35966,7 +42665,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35983,7 +42689,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -35997,7 +42710,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36014,7 +42734,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36061,7 +42788,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36072,7 +42806,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36088,7 +42829,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36104,7 +42852,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36118,7 +42873,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36132,7 +42894,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36146,7 +42915,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36169,7 +42945,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36241,7 +43024,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36252,7 +43042,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36268,7 +43065,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36285,7 +43089,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36306,7 +43117,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36329,7 +43147,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36340,7 +43165,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36356,7 +43188,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36383,7 +43222,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36397,7 +43243,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36411,7 +43264,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36431,7 +43291,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36444,7 +43311,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36459,7 +43333,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36470,7 +43351,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36481,7 +43369,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36504,7 +43399,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36515,7 +43417,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36531,7 +43440,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36558,7 +43474,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36569,7 +43492,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36585,7 +43515,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36612,7 +43549,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36623,7 +43567,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36639,7 +43590,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36658,7 +43616,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36673,7 +43638,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36686,7 +43658,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36704,7 +43683,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36715,7 +43701,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36765,7 +43758,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36777,7 +43777,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36803,7 +43810,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36814,7 +43828,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36830,7 +43851,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36873,7 +43901,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36884,7 +43919,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36900,7 +43942,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36927,7 +43976,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36938,7 +43994,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36954,7 +44017,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36981,7 +44051,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -36992,7 +44069,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37008,7 +44092,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37024,7 +44115,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37048,7 +44146,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37059,7 +44164,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37075,7 +44187,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37190,7 +44309,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37210,7 +44336,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37222,7 +44355,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37272,7 +44412,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37284,7 +44431,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37299,7 +44453,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37312,7 +44473,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37326,7 +44494,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37376,7 +44551,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37388,7 +44570,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37414,7 +44603,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37447,7 +44643,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37467,7 +44670,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37481,7 +44691,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37499,7 +44716,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37522,7 +44746,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37533,7 +44764,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37549,7 +44787,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37576,7 +44821,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37587,7 +44839,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37603,7 +44862,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37636,7 +44902,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37647,7 +44920,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37663,7 +44943,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37677,7 +44964,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37693,7 +44987,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37723,7 +45024,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37734,7 +45042,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37750,7 +45065,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37779,7 +45101,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37790,7 +45119,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37806,7 +45142,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37832,7 +45175,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37863,7 +45213,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37883,7 +45240,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37895,7 +45259,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37918,7 +45289,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37929,7 +45307,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37945,7 +45330,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37962,7 +45354,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37986,7 +45385,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -37997,7 +45403,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38013,7 +45426,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38027,7 +45447,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38077,7 +45504,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38089,7 +45523,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38115,7 +45556,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38126,7 +45574,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38142,7 +45597,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38156,7 +45618,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38169,7 +45638,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38183,7 +45659,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38195,7 +45678,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38207,7 +45697,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38257,7 +45754,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38269,7 +45773,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38295,7 +45806,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38306,7 +45824,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38322,7 +45847,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38336,7 +45868,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38352,7 +45891,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38367,7 +45913,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38380,7 +45933,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38398,7 +45958,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38409,7 +45976,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38459,7 +46033,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38471,7 +46052,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38497,7 +46085,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38508,7 +46103,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38524,7 +46126,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38567,7 +46176,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38578,7 +46194,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38594,7 +46217,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38621,7 +46251,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38632,7 +46269,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38648,7 +46292,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38675,7 +46326,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38686,7 +46344,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38702,7 +46367,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38716,7 +46388,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38766,7 +46445,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38778,7 +46464,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38804,7 +46497,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38815,7 +46515,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38831,7 +46538,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38893,7 +46607,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38914,7 +46635,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38937,7 +46665,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38948,7 +46683,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38964,7 +46706,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38981,7 +46730,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -38990,7 +46746,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39001,7 +46764,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39038,7 +46808,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39049,7 +46826,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39065,7 +46849,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39082,7 +46873,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39097,7 +46895,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39108,7 +46913,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39131,7 +46943,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39142,7 +46961,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39158,7 +46984,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39175,7 +47008,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39189,7 +47029,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39198,7 +47045,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39209,7 +47063,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39224,7 +47085,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39274,7 +47142,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39286,7 +47161,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39312,7 +47194,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39323,7 +47212,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39339,7 +47235,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39369,7 +47272,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39407,7 +47317,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39418,7 +47335,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39434,7 +47358,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39472,7 +47403,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39483,7 +47421,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39499,7 +47444,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39516,7 +47468,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39530,7 +47489,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39580,7 +47546,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39592,7 +47565,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39618,7 +47598,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39629,7 +47616,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39645,7 +47639,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39662,7 +47663,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39684,7 +47692,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39698,7 +47713,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39710,7 +47732,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39723,7 +47752,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39747,7 +47783,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39758,7 +47801,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39774,7 +47824,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39806,7 +47863,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39815,7 +47879,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39848,7 +47919,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39874,7 +47952,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39885,7 +47970,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39901,7 +47993,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39918,7 +48017,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39942,7 +48048,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39953,7 +48066,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39969,7 +48089,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39986,7 +48113,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -39995,7 +48129,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40006,7 +48147,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40040,7 +48188,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40049,7 +48204,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40060,7 +48222,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40089,7 +48258,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40100,7 +48276,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40116,7 +48299,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40143,7 +48333,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40154,7 +48351,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40170,7 +48374,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40187,7 +48398,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40201,7 +48419,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40218,7 +48443,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40265,7 +48497,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40276,7 +48515,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40292,7 +48538,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40308,7 +48561,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40322,7 +48582,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40336,7 +48603,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40350,7 +48624,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40373,7 +48654,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40445,7 +48733,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40456,7 +48751,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40472,7 +48774,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40489,7 +48798,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40510,7 +48826,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40533,7 +48856,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40544,7 +48874,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40560,7 +48897,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40587,7 +48931,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40601,7 +48952,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40615,7 +48973,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40635,7 +49000,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40648,7 +49020,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40663,7 +49042,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40674,7 +49060,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40685,7 +49078,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40708,7 +49108,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40719,7 +49126,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40735,7 +49149,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40762,7 +49183,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40773,7 +49201,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40789,7 +49224,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40816,7 +49258,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40827,7 +49276,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40843,7 +49299,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40859,7 +49322,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40883,7 +49353,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40894,7 +49371,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -40910,7 +49394,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41045,7 +49536,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41060,7 +49558,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41091,7 +49596,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41111,7 +49623,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41123,7 +49642,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41146,7 +49672,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41179,7 +49712,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41199,7 +49739,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41213,7 +49760,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41231,7 +49785,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41254,7 +49815,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41265,7 +49833,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41281,7 +49856,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41308,7 +49890,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41319,7 +49908,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41335,7 +49931,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41368,7 +49971,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41379,7 +49989,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41395,7 +50012,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41409,7 +50033,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41425,7 +50056,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41442,7 +50080,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41466,7 +50111,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41477,7 +50129,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41493,7 +50152,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41507,7 +50173,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41557,7 +50230,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41569,7 +50249,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41584,7 +50271,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41597,7 +50291,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41611,7 +50312,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41661,7 +50369,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41673,7 +50388,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41699,7 +50421,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41710,7 +50439,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41726,7 +50462,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41756,7 +50499,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41767,7 +50517,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41783,7 +50540,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41812,7 +50576,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41823,7 +50594,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41839,7 +50617,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41853,7 +50638,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41865,7 +50657,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41915,7 +50714,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41927,7 +50733,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41953,7 +50766,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41964,7 +50784,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -41980,7 +50807,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42006,7 +50840,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42019,7 +50860,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42033,7 +50881,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42047,7 +50902,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42059,7 +50921,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42109,7 +50978,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42121,7 +50997,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42147,7 +51030,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42158,7 +51048,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42174,7 +51071,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42188,7 +51092,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42204,7 +51115,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42219,7 +51137,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42232,7 +51157,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42250,7 +51182,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42261,7 +51200,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42311,7 +51257,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42323,7 +51276,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42349,7 +51309,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42360,7 +51327,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42376,7 +51350,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42419,7 +51400,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42430,7 +51418,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42446,7 +51441,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42473,7 +51475,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42484,7 +51493,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42500,7 +51516,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42527,7 +51550,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42538,7 +51568,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42554,7 +51591,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42571,7 +51615,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42594,7 +51645,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42666,7 +51724,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42677,7 +51742,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42693,7 +51765,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42710,7 +51789,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42731,7 +51817,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42754,7 +51847,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42765,7 +51865,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42781,7 +51888,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42808,7 +51922,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42817,7 +51938,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42828,7 +51956,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42865,7 +52000,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42876,7 +52018,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42892,7 +52041,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42909,7 +52065,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42924,7 +52087,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42935,7 +52105,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42958,7 +52135,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42969,7 +52153,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -42985,7 +52176,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43002,7 +52200,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43022,7 +52227,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43035,7 +52247,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43050,7 +52269,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43061,7 +52287,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43072,7 +52305,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43095,7 +52335,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43106,7 +52353,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43122,7 +52376,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43149,7 +52410,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43160,7 +52428,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43176,7 +52451,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43203,7 +52485,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43214,7 +52503,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43230,7 +52526,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43246,7 +52549,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43260,7 +52570,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43272,7 +52589,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43283,7 +52607,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43333,7 +52664,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43345,7 +52683,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43371,7 +52716,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43382,7 +52734,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43398,7 +52757,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43460,7 +52826,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43481,7 +52854,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43504,7 +52884,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43515,7 +52902,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43531,7 +52925,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43548,7 +52949,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43562,7 +52970,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43576,7 +52991,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43590,7 +53012,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43599,7 +53028,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43610,7 +53046,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43625,7 +53068,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43675,7 +53125,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43687,7 +53144,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43713,7 +53177,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43724,7 +53195,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43740,7 +53218,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43770,7 +53255,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43808,7 +53300,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43819,7 +53318,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43835,7 +53341,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43873,7 +53386,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43884,7 +53404,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43900,7 +53427,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43917,7 +53451,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43931,7 +53472,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43981,7 +53529,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -43993,7 +53548,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44019,7 +53581,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44030,7 +53599,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44046,7 +53622,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44063,7 +53646,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44085,7 +53675,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44099,7 +53696,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44111,7 +53715,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44124,7 +53735,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44148,7 +53766,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44159,7 +53784,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44175,7 +53807,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44207,7 +53846,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44216,7 +53862,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44249,7 +53902,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44275,7 +53935,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44286,7 +53953,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44302,7 +53976,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44319,7 +54000,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44343,7 +54031,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44354,7 +54049,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44370,7 +54072,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44387,7 +54096,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44396,7 +54112,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44407,7 +54130,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44441,7 +54171,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44450,7 +54187,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44461,7 +54205,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44490,7 +54241,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44501,7 +54259,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44517,7 +54282,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44544,7 +54316,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44555,7 +54334,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44571,7 +54357,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44588,7 +54381,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44602,7 +54402,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44619,7 +54426,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44666,7 +54480,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44677,7 +54498,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44693,7 +54521,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44709,7 +54544,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44718,7 +54560,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44739,7 +54588,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44789,7 +54645,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44801,7 +54664,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44827,7 +54697,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44838,7 +54715,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44854,7 +54738,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44880,7 +54771,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44891,7 +54789,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44907,7 +54812,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44924,7 +54836,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44948,7 +54867,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44959,7 +54885,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44975,7 +54908,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -44990,7 +54930,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45003,7 +54950,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45017,7 +54971,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45041,7 +55002,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45052,7 +55020,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45068,7 +55043,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45199,7 +55181,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45208,7 +55197,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45239,7 +55235,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45259,7 +55262,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45271,7 +55281,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45294,7 +55311,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45327,7 +55351,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45347,7 +55378,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45361,7 +55399,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45379,7 +55424,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45402,7 +55454,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45413,7 +55472,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45429,7 +55495,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45456,7 +55529,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45467,7 +55547,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45483,7 +55570,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45516,7 +55610,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45527,7 +55628,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45543,7 +55651,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45557,7 +55672,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45573,7 +55695,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45590,7 +55719,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45614,7 +55750,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45625,7 +55768,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45641,7 +55791,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45655,7 +55812,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45705,7 +55869,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45717,7 +55888,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45732,7 +55910,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45745,7 +55930,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45759,7 +55951,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45809,7 +56008,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45821,7 +56027,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45847,7 +56060,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45858,7 +56078,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45874,7 +56101,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45904,7 +56138,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45915,7 +56156,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45931,7 +56179,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45960,7 +56215,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45971,7 +56233,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -45987,7 +56256,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46001,7 +56277,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46013,7 +56296,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46063,7 +56353,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46075,7 +56372,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46101,7 +56405,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46112,7 +56423,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46128,7 +56446,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46154,7 +56479,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46167,7 +56499,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46181,7 +56520,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46195,7 +56541,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46207,7 +56560,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46257,7 +56617,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46269,7 +56636,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46295,7 +56669,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46306,7 +56687,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46322,7 +56710,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46336,7 +56731,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46352,7 +56754,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46367,7 +56776,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46380,7 +56796,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46398,7 +56821,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46409,7 +56839,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46459,7 +56896,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46471,7 +56915,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46497,7 +56948,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46508,7 +56966,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46524,7 +56989,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46567,7 +57039,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46578,7 +57057,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46594,7 +57080,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46621,7 +57114,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46632,7 +57132,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46648,7 +57155,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46675,7 +57189,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46686,7 +57207,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46702,7 +57230,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46719,7 +57254,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46742,7 +57284,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46814,7 +57363,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46825,7 +57381,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46841,7 +57404,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46858,7 +57428,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46879,7 +57456,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46902,7 +57486,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46913,7 +57504,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46929,7 +57527,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46956,7 +57561,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46965,7 +57577,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -46976,7 +57595,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47013,7 +57639,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47024,7 +57657,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47040,7 +57680,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47057,7 +57704,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47072,7 +57726,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47083,7 +57744,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47106,7 +57774,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47117,7 +57792,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47133,7 +57815,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47150,7 +57839,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47170,7 +57866,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47183,7 +57886,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47198,7 +57908,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47209,7 +57926,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47220,7 +57944,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47243,7 +57974,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47254,7 +57992,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47270,7 +58015,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47297,7 +58049,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47308,7 +58067,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47324,7 +58090,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47351,7 +58124,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47362,7 +58142,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47378,7 +58165,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47394,7 +58188,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47408,7 +58209,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47420,7 +58228,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47431,7 +58246,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47481,7 +58303,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47493,7 +58322,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47519,7 +58355,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47530,7 +58373,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47546,7 +58396,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47608,7 +58465,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47629,7 +58493,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47652,7 +58523,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47663,7 +58541,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47679,7 +58564,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47696,7 +58588,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47710,7 +58609,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47724,7 +58630,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47738,7 +58651,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47747,7 +58667,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47758,7 +58685,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47773,7 +58707,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47823,7 +58764,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47835,7 +58783,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47861,7 +58816,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47872,7 +58834,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47888,7 +58857,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47918,7 +58894,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47956,7 +58939,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47967,7 +58957,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -47983,7 +58980,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48021,7 +59025,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48032,7 +59043,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48048,7 +59066,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48065,7 +59090,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48079,7 +59111,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48129,7 +59168,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48141,7 +59187,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48167,7 +59220,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48178,7 +59238,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48194,7 +59261,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48211,7 +59285,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48233,7 +59314,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48247,7 +59335,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48259,7 +59354,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48272,7 +59374,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48296,7 +59405,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48307,7 +59423,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48323,7 +59446,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48355,7 +59485,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48364,7 +59501,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48397,7 +59541,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48423,7 +59574,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48434,7 +59592,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48450,7 +59615,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48467,7 +59639,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48491,7 +59670,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48502,7 +59688,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48518,7 +59711,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48535,7 +59735,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48544,7 +59751,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48555,7 +59769,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48589,7 +59810,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48598,7 +59826,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48609,7 +59844,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48638,7 +59880,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48649,7 +59898,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48665,7 +59921,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48692,7 +59955,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48703,7 +59973,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48719,7 +59996,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48736,7 +60020,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48750,7 +60041,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48767,7 +60065,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48814,7 +60119,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48825,7 +60137,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48841,7 +60160,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48871,7 +60197,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48886,7 +60219,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48899,7 +60239,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48908,7 +60255,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48929,7 +60283,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48979,7 +60340,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -48991,7 +60359,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49017,7 +60392,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49028,7 +60410,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49044,7 +60433,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49070,7 +60466,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49081,7 +60484,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49097,7 +60507,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49114,7 +60531,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49138,7 +60562,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49149,7 +60580,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49165,7 +60603,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49191,7 +60636,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49202,7 +60654,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49218,7 +60677,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49227,7 +60693,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49254,7 +60727,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49277,7 +60757,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49288,7 +60775,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49304,7 +60798,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49435,7 +60936,14 @@ ], "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49444,7 +60952,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49475,7 +60990,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49495,7 +61017,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49507,7 +61036,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49530,7 +61066,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49563,7 +61106,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49583,7 +61133,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49597,7 +61154,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49615,7 +61179,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49638,7 +61209,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49649,7 +61227,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49665,7 +61250,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49692,7 +61284,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49703,7 +61302,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49719,7 +61325,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49752,7 +61365,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49763,7 +61383,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49779,7 +61406,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49793,7 +61427,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49809,7 +61450,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49826,7 +61474,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49850,7 +61505,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49861,7 +61523,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49877,7 +61546,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49891,7 +61567,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49941,7 +61624,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49953,7 +61643,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49968,7 +61665,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49981,7 +61685,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -49995,7 +61706,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50045,7 +61763,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50057,7 +61782,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50083,7 +61815,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50094,7 +61833,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50110,7 +61856,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50140,7 +61893,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50151,7 +61911,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50167,7 +61934,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50196,7 +61970,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50207,7 +61988,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50223,7 +62011,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50237,7 +62032,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50249,7 +62051,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50299,7 +62108,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50311,7 +62127,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50337,7 +62160,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50348,7 +62178,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50364,7 +62201,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50390,7 +62234,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50403,7 +62254,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50417,7 +62275,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50431,7 +62296,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50443,7 +62315,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50493,7 +62372,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50505,7 +62391,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50531,7 +62424,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50542,7 +62442,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50558,7 +62465,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50572,7 +62486,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50588,7 +62509,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50603,7 +62531,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50616,7 +62551,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50634,7 +62576,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50645,7 +62594,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50695,7 +62651,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50707,7 +62670,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50733,7 +62703,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50744,7 +62721,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50760,7 +62744,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50803,7 +62794,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50814,7 +62812,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50830,7 +62835,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50857,7 +62869,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50868,7 +62887,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50884,7 +62910,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50911,7 +62944,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50922,7 +62962,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50938,7 +62985,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50955,7 +63009,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -50978,7 +63039,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51050,7 +63118,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51061,7 +63136,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51077,7 +63159,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51094,7 +63183,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51115,7 +63211,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51138,7 +63241,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51149,7 +63259,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51165,7 +63282,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51192,7 +63316,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51201,7 +63332,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51212,7 +63350,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51249,7 +63394,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51260,7 +63412,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51276,7 +63435,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51293,7 +63459,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51308,7 +63481,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51319,7 +63499,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51342,7 +63529,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51353,7 +63547,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51369,7 +63570,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51386,7 +63594,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51406,7 +63621,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51419,7 +63641,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51434,7 +63663,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51445,7 +63681,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51456,7 +63699,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51479,7 +63729,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51490,7 +63747,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51506,7 +63770,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51533,7 +63804,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51544,7 +63822,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51560,7 +63845,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51587,7 +63879,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51598,7 +63897,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51614,7 +63920,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51630,7 +63943,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51644,7 +63964,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51656,7 +63983,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51667,7 +64001,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51717,7 +64058,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51729,7 +64077,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51755,7 +64110,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51766,7 +64128,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51782,7 +64151,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51844,7 +64220,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51865,7 +64248,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51888,7 +64278,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51899,7 +64296,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51915,7 +64319,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51932,7 +64343,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51946,7 +64364,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51960,7 +64385,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51974,7 +64406,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51983,7 +64422,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -51994,7 +64440,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52009,7 +64462,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52059,7 +64519,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52071,7 +64538,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52097,7 +64571,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52108,7 +64589,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52124,7 +64612,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52154,7 +64649,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52192,7 +64694,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52203,7 +64712,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52219,7 +64735,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52257,7 +64780,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52268,7 +64798,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52284,7 +64821,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52301,7 +64845,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52315,7 +64866,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52365,7 +64923,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52377,7 +64942,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52403,7 +64975,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52414,7 +64993,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52430,7 +65016,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52447,7 +65040,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52469,7 +65069,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52483,7 +65090,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52495,7 +65109,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52508,7 +65129,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52532,7 +65160,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52543,7 +65178,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52559,7 +65201,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52591,7 +65240,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52600,7 +65256,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52633,7 +65296,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52659,7 +65329,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52670,7 +65347,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52686,7 +65370,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52703,7 +65394,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52727,7 +65425,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52738,7 +65443,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52754,7 +65466,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52771,7 +65490,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52780,7 +65506,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52791,7 +65524,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52825,7 +65565,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52834,7 +65581,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52845,7 +65599,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52874,7 +65635,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52885,7 +65653,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52901,7 +65676,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52928,7 +65710,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52939,7 +65728,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52955,7 +65751,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52972,7 +65775,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -52986,7 +65796,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53003,7 +65820,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53050,7 +65874,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53061,7 +65892,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53077,7 +65915,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53101,7 +65946,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53151,7 +66003,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53163,7 +66022,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53189,7 +66055,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53200,7 +66073,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53216,7 +66096,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53242,7 +66129,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53253,7 +66147,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53269,7 +66170,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53278,7 +66186,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53299,7 +66214,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53349,7 +66271,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53361,7 +66290,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53387,7 +66323,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53398,7 +66341,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53414,7 +66364,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53440,7 +66397,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53451,7 +66415,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53467,7 +66438,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53719,7 +66697,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53731,7 +66716,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53781,7 +66773,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53793,7 +66792,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53808,7 +66814,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53821,7 +66834,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53835,7 +66855,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53885,7 +66912,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53897,7 +66931,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53923,7 +66964,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53956,7 +67004,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53976,7 +67031,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -53990,7 +67052,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54008,7 +67077,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54031,7 +67107,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54042,7 +67125,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54058,7 +67148,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54085,7 +67182,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54096,7 +67200,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54112,7 +67223,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54145,7 +67263,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54156,7 +67281,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54172,7 +67304,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54186,7 +67325,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54202,7 +67348,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54232,7 +67385,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54243,7 +67403,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54259,7 +67426,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54288,7 +67462,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54299,7 +67480,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54315,7 +67503,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54341,7 +67536,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54372,7 +67574,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54392,7 +67601,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54404,7 +67620,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54427,7 +67650,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54438,7 +67668,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54454,7 +67691,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54471,7 +67715,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54495,7 +67746,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54506,7 +67764,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54522,7 +67787,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54536,7 +67808,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54586,7 +67865,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54598,7 +67884,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54624,7 +67917,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54635,7 +67935,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54651,7 +67958,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54665,7 +67979,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54677,7 +67998,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54727,7 +68055,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54739,7 +68074,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54765,7 +68107,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54776,7 +68125,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54792,7 +68148,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54818,7 +68181,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54831,7 +68201,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54845,7 +68222,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54859,7 +68243,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54871,7 +68262,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54921,7 +68319,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54933,7 +68338,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54959,7 +68371,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54970,7 +68389,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -54986,7 +68412,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55000,7 +68433,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55016,7 +68456,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55031,7 +68478,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55044,7 +68498,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55062,7 +68523,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55073,7 +68541,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55123,7 +68598,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55135,7 +68617,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55161,7 +68650,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55172,7 +68668,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55188,7 +68691,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55231,7 +68741,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55242,7 +68759,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55258,7 +68782,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55285,7 +68816,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55296,7 +68834,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55312,7 +68857,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55339,7 +68891,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55350,7 +68909,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55366,7 +68932,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55383,7 +68956,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55406,7 +68986,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55478,7 +69065,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55489,7 +69083,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55505,7 +69106,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55522,7 +69130,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55543,7 +69158,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55566,7 +69188,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55577,7 +69206,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55593,7 +69229,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55620,7 +69263,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55629,7 +69279,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55640,7 +69297,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55677,7 +69341,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55688,7 +69359,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55704,7 +69382,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55721,7 +69406,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55736,7 +69428,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55747,7 +69446,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55770,7 +69476,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55781,7 +69494,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55797,7 +69517,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55814,7 +69541,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55834,7 +69568,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55847,7 +69588,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55862,7 +69610,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55873,7 +69628,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55884,7 +69646,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55907,7 +69676,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55918,7 +69694,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55934,7 +69717,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55961,7 +69751,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55972,7 +69769,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -55988,7 +69792,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56015,7 +69826,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56026,7 +69844,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56042,7 +69867,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56058,7 +69890,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56072,7 +69911,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56084,7 +69930,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56095,7 +69948,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56145,7 +70005,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56157,7 +70024,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56183,7 +70057,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56194,7 +70075,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56210,7 +70098,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56272,7 +70167,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56293,7 +70195,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56316,7 +70225,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56327,7 +70243,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56343,7 +70266,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56360,7 +70290,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56374,7 +70311,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56388,7 +70332,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56402,7 +70353,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56411,7 +70369,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56422,7 +70387,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56437,7 +70409,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56487,7 +70466,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56499,7 +70485,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56525,7 +70518,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56536,7 +70536,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56552,7 +70559,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56582,7 +70596,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56620,7 +70641,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56631,7 +70659,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56647,7 +70682,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56685,7 +70727,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56696,7 +70745,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56712,7 +70768,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56729,7 +70792,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56743,7 +70813,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56793,7 +70870,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56805,7 +70889,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56831,7 +70922,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56842,7 +70940,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56858,7 +70963,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56875,7 +70987,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56897,7 +71016,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56911,7 +71037,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56923,7 +71056,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56936,7 +71076,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56960,7 +71107,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56971,7 +71125,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -56987,7 +71148,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57019,7 +71187,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57028,7 +71203,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57061,7 +71243,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57087,7 +71276,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57098,7 +71294,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57114,7 +71317,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57131,7 +71341,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57155,7 +71372,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57166,7 +71390,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57182,7 +71413,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57199,7 +71437,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57208,7 +71453,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57219,7 +71471,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57253,7 +71512,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57262,7 +71528,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57273,7 +71546,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57302,7 +71582,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57313,7 +71600,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57329,7 +71623,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57356,7 +71657,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57367,7 +71675,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57383,7 +71698,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57400,7 +71722,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57414,7 +71743,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57431,7 +71767,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57478,7 +71821,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57489,7 +71839,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57505,7 +71862,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57521,7 +71885,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57535,7 +71906,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57549,7 +71927,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57563,7 +71948,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57577,7 +71969,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57601,7 +72000,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57615,7 +72021,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57629,7 +72042,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57653,7 +72073,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57664,7 +72091,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57680,7 +72114,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57806,7 +72247,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57815,7 +72263,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57846,7 +72301,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57866,7 +72328,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57878,7 +72347,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57901,7 +72377,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57934,7 +72417,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57954,7 +72444,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57968,7 +72465,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -57986,7 +72490,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58009,7 +72520,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58020,7 +72538,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58036,7 +72561,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58063,7 +72595,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58074,7 +72613,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58090,7 +72636,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58123,7 +72676,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58134,7 +72694,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58150,7 +72717,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58164,7 +72738,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58180,7 +72761,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58197,7 +72785,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58221,7 +72816,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58232,7 +72834,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58248,7 +72857,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58262,7 +72878,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58312,7 +72935,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58324,7 +72954,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58339,7 +72976,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58352,7 +72996,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58366,7 +73017,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58416,7 +73074,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58428,7 +73093,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58454,7 +73126,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58465,7 +73144,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58481,7 +73167,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58511,7 +73204,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58522,7 +73222,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58538,7 +73245,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58567,7 +73281,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58578,7 +73299,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58594,7 +73322,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58608,7 +73343,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58620,7 +73362,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58670,7 +73419,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58682,7 +73438,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58708,7 +73471,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58719,7 +73489,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58735,7 +73512,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58761,7 +73545,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58774,7 +73565,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58788,7 +73586,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58802,7 +73607,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58814,7 +73626,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58864,7 +73683,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58876,7 +73702,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58902,7 +73735,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58913,7 +73753,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58929,7 +73776,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58943,7 +73797,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58959,7 +73820,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58974,7 +73842,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -58987,7 +73862,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59005,7 +73887,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59016,7 +73905,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59066,7 +73962,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59078,7 +73981,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59104,7 +74014,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59115,7 +74032,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59131,7 +74055,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59174,7 +74105,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59185,7 +74123,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59201,7 +74146,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59228,7 +74180,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59239,7 +74198,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59255,7 +74221,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59282,7 +74255,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59293,7 +74273,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59309,7 +74296,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59326,7 +74320,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59349,7 +74350,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59421,7 +74429,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59432,7 +74447,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59448,7 +74470,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59465,7 +74494,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59486,7 +74522,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59509,7 +74552,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59520,7 +74570,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59536,7 +74593,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59563,7 +74627,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59572,7 +74643,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59583,7 +74661,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59620,7 +74705,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59631,7 +74723,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59647,7 +74746,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59664,7 +74770,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59679,7 +74792,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59690,7 +74810,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59713,7 +74840,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59724,7 +74858,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59740,7 +74881,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59757,7 +74905,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59777,7 +74932,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59790,7 +74952,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59805,7 +74974,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59816,7 +74992,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59827,7 +75010,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59850,7 +75040,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59861,7 +75058,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59877,7 +75081,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59904,7 +75115,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59915,7 +75133,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59931,7 +75156,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59958,7 +75190,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59969,7 +75208,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -59985,7 +75231,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60001,7 +75254,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60015,7 +75275,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60027,7 +75294,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60038,7 +75312,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60088,7 +75369,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60100,7 +75388,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60126,7 +75421,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60137,7 +75439,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60153,7 +75462,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60215,7 +75531,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60236,7 +75559,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60259,7 +75589,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60270,7 +75607,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60286,7 +75630,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60303,7 +75654,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60317,7 +75675,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60331,7 +75696,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60345,7 +75717,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60354,7 +75733,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60365,7 +75751,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60380,7 +75773,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60430,7 +75830,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60442,7 +75849,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60468,7 +75882,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60479,7 +75900,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60495,7 +75923,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60525,7 +75960,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60563,7 +76005,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60574,7 +76023,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60590,7 +76046,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60628,7 +76091,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60639,7 +76109,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60655,7 +76132,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60672,7 +76156,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60686,7 +76177,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60736,7 +76234,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60748,7 +76253,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60774,7 +76286,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60785,7 +76304,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60801,7 +76327,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60818,7 +76351,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60840,7 +76380,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60854,7 +76401,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60866,7 +76420,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60879,7 +76440,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60903,7 +76471,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60914,7 +76489,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60930,7 +76512,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60962,7 +76551,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -60971,7 +76567,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61004,7 +76607,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61030,7 +76640,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61041,7 +76658,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61057,7 +76681,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61074,7 +76705,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61098,7 +76736,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61109,7 +76754,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61125,7 +76777,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61142,7 +76801,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61151,7 +76817,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61162,7 +76835,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61196,7 +76876,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61205,7 +76892,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61216,7 +76910,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61245,7 +76946,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61256,7 +76964,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61272,7 +76987,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61299,7 +77021,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61310,7 +77039,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61326,7 +77062,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61343,7 +77086,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61357,7 +77107,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61374,7 +77131,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61421,7 +77185,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61432,7 +77203,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61448,7 +77226,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61462,7 +77247,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61499,7 +77291,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61510,7 +77309,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61526,7 +77332,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61639,7 +77452,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61660,7 +77480,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61691,7 +77518,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61711,7 +77545,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61723,7 +77564,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61746,7 +77594,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61779,7 +77634,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61799,7 +77661,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61813,7 +77682,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61831,7 +77707,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61854,7 +77737,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61865,7 +77755,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61881,7 +77778,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61908,7 +77812,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61919,7 +77830,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61935,7 +77853,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61968,7 +77893,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61979,7 +77911,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -61995,7 +77934,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62009,7 +77955,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62025,7 +77978,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62042,7 +78002,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62066,7 +78033,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62077,7 +78051,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62093,7 +78074,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62107,7 +78095,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62157,7 +78152,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62169,7 +78171,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62184,7 +78193,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62197,7 +78213,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62211,7 +78234,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62261,7 +78291,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62273,7 +78310,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62299,7 +78343,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62310,7 +78361,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62326,7 +78384,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62356,7 +78421,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62367,7 +78439,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62383,7 +78462,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62412,7 +78498,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62423,7 +78516,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62439,7 +78539,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62453,7 +78560,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62465,7 +78579,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62515,7 +78636,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62527,7 +78655,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62553,7 +78688,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62564,7 +78706,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62580,7 +78729,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62606,7 +78762,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62619,7 +78782,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62633,7 +78803,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62647,7 +78824,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62659,7 +78843,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62709,7 +78900,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62721,7 +78919,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62747,7 +78952,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62758,7 +78970,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62774,7 +78993,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62788,7 +79014,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62804,7 +79037,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62819,7 +79059,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62832,7 +79079,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62850,7 +79104,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62861,7 +79122,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62911,7 +79179,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62923,7 +79198,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62949,7 +79231,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62960,7 +79249,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -62976,7 +79272,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63019,7 +79322,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63030,7 +79340,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63046,7 +79363,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63073,7 +79397,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63084,7 +79415,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63100,7 +79438,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63127,7 +79472,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63138,7 +79490,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63154,7 +79513,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63171,7 +79537,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63194,7 +79567,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63266,7 +79646,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63277,7 +79664,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63293,7 +79687,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63310,7 +79711,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63331,7 +79739,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63354,7 +79769,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63365,7 +79787,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63381,7 +79810,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63408,7 +79844,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63417,7 +79860,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63428,7 +79878,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63465,7 +79922,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63476,7 +79940,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63492,7 +79963,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63509,7 +79987,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63524,7 +80009,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63535,7 +80027,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63558,7 +80057,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63569,7 +80075,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63585,7 +80098,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63602,7 +80122,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63622,7 +80149,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63635,7 +80169,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63650,7 +80191,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63661,7 +80209,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63672,7 +80227,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63695,7 +80257,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63706,7 +80275,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63722,7 +80298,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63749,7 +80332,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63760,7 +80350,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63776,7 +80373,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63803,7 +80407,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63814,7 +80425,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63830,7 +80448,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63846,7 +80471,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63860,7 +80492,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63872,7 +80511,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63883,7 +80529,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63933,7 +80586,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63945,7 +80605,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63971,7 +80638,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63982,7 +80656,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -63998,7 +80679,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64060,7 +80748,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64081,7 +80776,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64104,7 +80806,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64115,7 +80824,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64131,7 +80847,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64148,7 +80871,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64162,7 +80892,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64176,7 +80913,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64190,7 +80934,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64199,7 +80950,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64210,7 +80968,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64225,7 +80990,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64275,7 +81047,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64287,7 +81066,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64313,7 +81099,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64324,7 +81117,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64340,7 +81140,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64370,7 +81177,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64408,7 +81222,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64419,7 +81240,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64435,7 +81263,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64473,7 +81308,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64484,7 +81326,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64500,7 +81349,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64517,7 +81373,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64531,7 +81394,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64581,7 +81451,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64593,7 +81470,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64619,7 +81503,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64630,7 +81521,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64646,7 +81544,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64663,7 +81568,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64685,7 +81597,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64699,7 +81618,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64711,7 +81637,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64724,7 +81657,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64748,7 +81688,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64759,7 +81706,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64775,7 +81729,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64807,7 +81768,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64816,7 +81784,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64849,7 +81824,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64875,7 +81857,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64886,7 +81875,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64902,7 +81898,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64919,7 +81922,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64943,7 +81953,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64954,7 +81971,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64970,7 +81994,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64987,7 +82018,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -64996,7 +82034,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65007,7 +82052,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65041,7 +82093,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65050,7 +82109,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65061,7 +82127,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65090,7 +82163,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65101,7 +82181,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65117,7 +82204,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65144,7 +82238,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65155,7 +82256,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65171,7 +82279,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65188,7 +82303,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65202,7 +82324,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65219,7 +82348,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65266,7 +82402,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65277,7 +82420,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65293,7 +82443,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65319,7 +82476,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65330,7 +82494,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65346,7 +82517,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65478,7 +82656,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65492,7 +82677,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65523,7 +82715,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65543,7 +82742,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65555,7 +82761,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65578,7 +82791,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65611,7 +82831,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65631,7 +82858,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65645,7 +82879,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65663,7 +82904,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65686,7 +82934,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65697,7 +82952,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65713,7 +82975,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65740,7 +83009,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65751,7 +83027,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65767,7 +83050,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65800,7 +83090,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65811,7 +83108,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65827,7 +83131,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65841,7 +83152,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65857,7 +83175,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65874,7 +83199,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65898,7 +83230,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65909,7 +83248,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65925,7 +83271,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65939,7 +83292,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -65989,7 +83349,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66001,7 +83368,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66016,7 +83390,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66029,7 +83410,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66043,7 +83431,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66093,7 +83488,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66105,7 +83507,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66131,7 +83540,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66142,7 +83558,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66158,7 +83581,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66188,7 +83618,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66199,7 +83636,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66215,7 +83659,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66244,7 +83695,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66255,7 +83713,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66271,7 +83736,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66285,7 +83757,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66297,7 +83776,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66347,7 +83833,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66359,7 +83852,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66385,7 +83885,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66396,7 +83903,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66412,7 +83926,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66438,7 +83959,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66451,7 +83979,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66465,7 +84000,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66479,7 +84021,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66491,7 +84040,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66541,7 +84097,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66553,7 +84116,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66579,7 +84149,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66590,7 +84167,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66606,7 +84190,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66620,7 +84211,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66636,7 +84234,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66651,7 +84256,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66664,7 +84276,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66682,7 +84301,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66693,7 +84319,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66743,7 +84376,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66755,7 +84395,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66781,7 +84428,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66792,7 +84446,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66808,7 +84469,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66851,7 +84519,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66862,7 +84537,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66878,7 +84560,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66905,7 +84594,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66916,7 +84612,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66932,7 +84635,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66959,7 +84669,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66970,7 +84687,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -66986,7 +84710,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67003,7 +84734,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67026,7 +84764,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67098,7 +84843,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67109,7 +84861,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67125,7 +84884,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67142,7 +84908,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67163,7 +84936,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67186,7 +84966,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67197,7 +84984,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67213,7 +85007,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67240,7 +85041,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67249,7 +85057,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67260,7 +85075,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67297,7 +85119,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67308,7 +85137,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67324,7 +85160,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67341,7 +85184,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67356,7 +85206,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67367,7 +85224,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67390,7 +85254,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67401,7 +85272,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67417,7 +85295,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67434,7 +85319,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67454,7 +85346,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67467,7 +85366,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67482,7 +85388,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67493,7 +85406,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67504,7 +85424,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67527,7 +85454,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67538,7 +85472,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67554,7 +85495,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67581,7 +85529,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67592,7 +85547,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67608,7 +85570,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67635,7 +85604,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67646,7 +85622,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67662,7 +85645,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67678,7 +85668,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67692,7 +85689,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67704,7 +85708,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67715,7 +85726,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67765,7 +85783,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67777,7 +85802,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67803,7 +85835,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67814,7 +85853,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67830,7 +85876,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67892,7 +85945,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67913,7 +85973,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67936,7 +86003,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67947,7 +86021,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67963,7 +86044,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67980,7 +86068,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -67994,7 +86089,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68008,7 +86110,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68022,7 +86131,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68031,7 +86147,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68042,7 +86165,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68057,7 +86187,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68107,7 +86244,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68119,7 +86263,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68145,7 +86296,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68156,7 +86314,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68172,7 +86337,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68202,7 +86374,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68240,7 +86419,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68251,7 +86437,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68267,7 +86460,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68305,7 +86505,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68316,7 +86523,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68332,7 +86546,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68349,7 +86570,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68363,7 +86591,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68413,7 +86648,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68425,7 +86667,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68451,7 +86700,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68462,7 +86718,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68478,7 +86741,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68495,7 +86765,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68517,7 +86794,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68531,7 +86815,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68543,7 +86834,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68556,7 +86854,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68580,7 +86885,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68591,7 +86903,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68607,7 +86926,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68639,7 +86965,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68648,7 +86981,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68681,7 +87021,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68707,7 +87054,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68718,7 +87072,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68734,7 +87095,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68751,7 +87119,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68775,7 +87150,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68786,7 +87168,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68802,7 +87191,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68819,7 +87215,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68828,7 +87231,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68839,7 +87249,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68873,7 +87290,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68882,7 +87306,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68893,7 +87324,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68922,7 +87360,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68933,7 +87378,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68949,7 +87401,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68976,7 +87435,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -68987,7 +87453,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69003,7 +87476,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69020,7 +87500,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69034,7 +87521,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69051,7 +87545,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69098,7 +87599,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69109,7 +87617,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69125,7 +87640,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69140,7 +87662,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69153,7 +87682,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69177,7 +87713,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69188,7 +87731,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69204,7 +87754,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69351,7 +87908,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69360,7 +87924,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69391,7 +87962,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69411,7 +87989,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69423,7 +88008,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69446,7 +88038,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69479,7 +88078,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69499,7 +88105,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69513,7 +88126,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69531,7 +88151,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69554,7 +88181,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69565,7 +88199,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69581,7 +88222,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69608,7 +88256,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69619,7 +88274,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69635,7 +88297,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69668,7 +88337,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69679,7 +88355,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69695,7 +88378,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69709,7 +88399,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69725,7 +88422,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69742,7 +88446,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69766,7 +88477,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69777,7 +88495,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69793,7 +88518,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69807,7 +88539,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69857,7 +88596,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69869,7 +88615,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69884,7 +88637,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69897,7 +88657,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69911,7 +88678,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69961,7 +88735,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69973,7 +88754,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -69999,7 +88787,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70010,7 +88805,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70026,7 +88828,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70056,7 +88865,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70067,7 +88883,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70083,7 +88906,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70112,7 +88942,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70123,7 +88960,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70139,7 +88983,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70153,7 +89004,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70165,7 +89023,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70215,7 +89080,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70227,7 +89099,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70253,7 +89132,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70264,7 +89150,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70280,7 +89173,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70306,7 +89206,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70319,7 +89226,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70333,7 +89247,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70347,7 +89268,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70359,7 +89287,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70409,7 +89344,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70421,7 +89363,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70447,7 +89396,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70458,7 +89414,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70474,7 +89437,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70488,7 +89458,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70504,7 +89481,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70519,7 +89503,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70532,7 +89523,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70550,7 +89548,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70561,7 +89566,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70611,7 +89623,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70623,7 +89642,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70649,7 +89675,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70660,7 +89693,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70676,7 +89716,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70719,7 +89766,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70730,7 +89784,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70746,7 +89807,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70773,7 +89841,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70784,7 +89859,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70800,7 +89882,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70827,7 +89916,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70838,7 +89934,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70854,7 +89957,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70871,7 +89981,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70894,7 +90011,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70966,7 +90090,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70977,7 +90108,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -70993,7 +90131,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71010,7 +90155,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71031,7 +90183,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71054,7 +90213,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71065,7 +90231,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71081,7 +90254,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71108,7 +90288,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71117,7 +90304,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71128,7 +90322,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71165,7 +90366,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71176,7 +90384,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71192,7 +90407,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71209,7 +90431,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71224,7 +90453,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71235,7 +90471,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71258,7 +90501,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71269,7 +90519,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71285,7 +90542,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71302,7 +90566,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71322,7 +90593,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71335,7 +90613,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71350,7 +90635,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71361,7 +90653,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71372,7 +90671,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71395,7 +90701,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71406,7 +90719,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71422,7 +90742,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71449,7 +90776,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71460,7 +90794,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71476,7 +90817,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71503,7 +90851,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71514,7 +90869,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71530,7 +90892,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71546,7 +90915,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71560,7 +90936,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71572,7 +90955,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71583,7 +90973,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71633,7 +91030,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71645,7 +91049,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71671,7 +91082,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71682,7 +91100,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71698,7 +91123,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71760,7 +91192,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71781,7 +91220,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71804,7 +91250,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71815,7 +91268,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71831,7 +91291,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71848,7 +91315,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71862,7 +91336,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71876,7 +91357,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71890,7 +91378,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71899,7 +91394,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71910,7 +91412,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71925,7 +91434,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71975,7 +91491,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -71987,7 +91510,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72013,7 +91543,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72024,7 +91561,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72040,7 +91584,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72070,7 +91621,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72108,7 +91666,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72119,7 +91684,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72135,7 +91707,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72173,7 +91752,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72184,7 +91770,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72200,7 +91793,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72217,7 +91817,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72231,7 +91838,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72281,7 +91895,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72293,7 +91914,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72319,7 +91947,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72330,7 +91965,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72346,7 +91988,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72363,7 +92012,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72385,7 +92041,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72399,7 +92062,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72411,7 +92081,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72424,7 +92101,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72448,7 +92132,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72459,7 +92150,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72475,7 +92173,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72507,7 +92212,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72516,7 +92228,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72549,7 +92268,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72575,7 +92301,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72586,7 +92319,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72602,7 +92342,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72619,7 +92366,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72643,7 +92397,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72654,7 +92415,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72670,7 +92438,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72687,7 +92462,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72696,7 +92478,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72707,7 +92496,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72741,7 +92537,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72750,7 +92553,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72761,7 +92571,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72790,7 +92607,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72801,7 +92625,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72817,7 +92648,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72844,7 +92682,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72855,7 +92700,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72871,7 +92723,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72888,7 +92747,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72902,7 +92768,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72919,7 +92792,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72966,7 +92846,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72977,7 +92864,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -72993,7 +92887,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73007,7 +92908,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73041,7 +92949,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73065,7 +92980,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73076,7 +92998,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73092,7 +93021,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73210,7 +93146,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73219,7 +93162,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73228,7 +93178,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73259,7 +93216,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73279,7 +93243,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73291,7 +93262,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73314,7 +93292,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73347,7 +93332,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73367,7 +93359,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73381,7 +93380,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73399,7 +93405,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73422,7 +93435,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73433,7 +93453,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73449,7 +93476,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73476,7 +93510,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73487,7 +93528,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73503,7 +93551,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73536,7 +93591,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73547,7 +93609,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73563,7 +93632,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73577,7 +93653,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73593,7 +93676,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73610,7 +93700,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73634,7 +93731,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73645,7 +93749,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73661,7 +93772,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73675,7 +93793,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73725,7 +93850,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73737,7 +93869,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73752,7 +93891,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73765,7 +93911,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73779,7 +93932,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73829,7 +93989,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73841,7 +94008,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73867,7 +94041,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73878,7 +94059,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73894,7 +94082,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73924,7 +94119,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73935,7 +94137,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73951,7 +94160,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73980,7 +94196,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -73991,7 +94214,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74007,7 +94237,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74021,7 +94258,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74033,7 +94277,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74083,7 +94334,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74095,7 +94353,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74121,7 +94386,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74132,7 +94404,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74148,7 +94427,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74174,7 +94460,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74187,7 +94480,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74201,7 +94501,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74215,7 +94522,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74227,7 +94541,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74277,7 +94598,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74289,7 +94617,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74315,7 +94650,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74326,7 +94668,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74342,7 +94691,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74356,7 +94712,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74372,7 +94735,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74387,7 +94757,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74400,7 +94777,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74418,7 +94802,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74429,7 +94820,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74479,7 +94877,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74491,7 +94896,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74517,7 +94929,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74528,7 +94947,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74544,7 +94970,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74587,7 +95020,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74598,7 +95038,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74614,7 +95061,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74641,7 +95095,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74652,7 +95113,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74668,7 +95136,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74695,7 +95170,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74706,7 +95188,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74722,7 +95211,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74739,7 +95235,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74762,7 +95265,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74834,7 +95344,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74845,7 +95362,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74861,7 +95385,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74878,7 +95409,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74899,7 +95437,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74922,7 +95467,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74933,7 +95485,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74949,7 +95508,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74976,7 +95542,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74985,7 +95558,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -74996,7 +95576,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75033,7 +95620,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75044,7 +95638,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75060,7 +95661,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75077,7 +95685,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75092,7 +95707,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75103,7 +95725,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75126,7 +95755,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75137,7 +95773,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75153,7 +95796,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75170,7 +95820,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75190,7 +95847,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75203,7 +95867,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75218,7 +95889,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75229,7 +95907,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75240,7 +95925,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75263,7 +95955,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75274,7 +95973,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75290,7 +95996,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75317,7 +96030,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75328,7 +96048,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75344,7 +96071,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75371,7 +96105,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75382,7 +96123,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75398,7 +96146,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75414,7 +96169,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75428,7 +96190,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75440,7 +96209,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75451,7 +96227,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75501,7 +96284,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75513,7 +96303,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75539,7 +96336,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75550,7 +96354,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75566,7 +96377,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75628,7 +96446,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75649,7 +96474,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75672,7 +96504,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75683,7 +96522,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75699,7 +96545,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75716,7 +96569,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75730,7 +96590,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75744,7 +96611,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75758,7 +96632,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75767,7 +96648,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75778,7 +96666,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75793,7 +96688,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75843,7 +96745,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75855,7 +96764,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75881,7 +96797,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75892,7 +96815,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75908,7 +96838,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75938,7 +96875,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75976,7 +96920,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -75987,7 +96938,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76003,7 +96961,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76041,7 +97006,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76052,7 +97024,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76068,7 +97047,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76085,7 +97071,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76099,7 +97092,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76149,7 +97149,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76161,7 +97168,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76187,7 +97201,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76198,7 +97219,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76214,7 +97242,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76231,7 +97266,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76253,7 +97295,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76267,7 +97316,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76279,7 +97335,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76292,7 +97355,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76316,7 +97386,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76327,7 +97404,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76343,7 +97427,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76375,7 +97466,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76384,7 +97482,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76417,7 +97522,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76443,7 +97555,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76454,7 +97573,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76470,7 +97596,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76487,7 +97620,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76511,7 +97651,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76522,7 +97669,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76538,7 +97692,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76555,7 +97716,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76569,7 +97737,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76583,7 +97758,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76592,7 +97774,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76603,7 +97792,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76632,7 +97828,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76643,7 +97846,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76659,7 +97869,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76679,7 +97896,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76726,7 +97950,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76737,7 +97968,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76753,7 +97991,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76767,7 +98012,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76801,7 +98053,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76825,7 +98084,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76836,7 +98102,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76852,7 +98125,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76866,7 +98146,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76895,7 +98182,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76906,7 +98200,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -76922,7 +98223,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77048,7 +98356,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77057,7 +98372,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77088,7 +98410,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77108,7 +98437,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77120,7 +98456,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77143,7 +98486,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77176,7 +98526,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77196,7 +98553,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77210,7 +98574,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77228,7 +98599,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77251,7 +98629,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77262,7 +98647,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77278,7 +98670,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77305,7 +98704,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77316,7 +98722,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77332,7 +98745,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77365,7 +98785,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77376,7 +98803,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77392,7 +98826,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77406,7 +98847,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77422,7 +98870,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77439,7 +98894,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77463,7 +98925,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77474,7 +98943,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77490,7 +98966,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77504,7 +98987,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77554,7 +99044,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77566,7 +99063,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77581,7 +99085,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77594,7 +99105,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77608,7 +99126,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77658,7 +99183,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77670,7 +99202,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77696,7 +99235,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77707,7 +99253,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77723,7 +99276,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77753,7 +99313,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77764,7 +99331,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77780,7 +99354,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77809,7 +99390,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77820,7 +99408,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77836,7 +99431,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77850,7 +99452,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77862,7 +99471,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77912,7 +99528,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77924,7 +99547,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77950,7 +99580,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77961,7 +99598,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -77977,7 +99621,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78003,7 +99654,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78016,7 +99674,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78030,7 +99695,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78044,7 +99716,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78056,7 +99735,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78106,7 +99792,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78118,7 +99811,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78144,7 +99844,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78155,7 +99862,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78171,7 +99885,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78185,7 +99906,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78201,7 +99929,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78216,7 +99951,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78229,7 +99971,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78247,7 +99996,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78258,7 +100014,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78308,7 +100071,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78320,7 +100090,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78346,7 +100123,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78357,7 +100141,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78373,7 +100164,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78416,7 +100214,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78427,7 +100232,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78443,7 +100255,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78470,7 +100289,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78481,7 +100307,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78497,7 +100330,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78524,7 +100364,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78535,7 +100382,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78551,7 +100405,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78568,7 +100429,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78591,7 +100459,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78663,7 +100538,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78674,7 +100556,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78690,7 +100579,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78707,7 +100603,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78728,7 +100631,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78751,7 +100661,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78762,7 +100679,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78778,7 +100702,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78805,7 +100736,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78814,7 +100752,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78825,7 +100770,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78862,7 +100814,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78873,7 +100832,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78889,7 +100855,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78906,7 +100879,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78921,7 +100901,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78932,7 +100919,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78955,7 +100949,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78966,7 +100967,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78982,7 +100990,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -78999,7 +101014,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79019,7 +101041,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79032,7 +101061,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79047,7 +101083,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79058,7 +101101,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79069,7 +101119,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79092,7 +101149,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79103,7 +101167,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79119,7 +101190,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79146,7 +101224,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79157,7 +101242,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79173,7 +101265,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79200,7 +101299,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79211,7 +101317,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79227,7 +101340,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79243,7 +101363,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79257,7 +101384,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79269,7 +101403,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79280,7 +101421,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79330,7 +101478,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79342,7 +101497,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79368,7 +101530,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79379,7 +101548,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79395,7 +101571,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79457,7 +101640,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79478,7 +101668,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79501,7 +101698,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79512,7 +101716,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79528,7 +101739,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79545,7 +101763,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79559,7 +101784,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79573,7 +101805,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79587,7 +101826,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79596,7 +101842,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79607,7 +101860,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79622,7 +101882,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79672,7 +101939,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79684,7 +101958,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79710,7 +101991,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79721,7 +102009,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79737,7 +102032,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79767,7 +102069,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79805,7 +102114,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79816,7 +102132,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79832,7 +102155,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79870,7 +102200,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79881,7 +102218,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79897,7 +102241,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79914,7 +102265,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79928,7 +102286,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79978,7 +102343,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -79990,7 +102362,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80016,7 +102395,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80027,7 +102413,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80043,7 +102436,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80060,7 +102460,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80082,7 +102489,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80096,7 +102510,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80108,7 +102529,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80121,7 +102549,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80145,7 +102580,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80156,7 +102598,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80172,7 +102621,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80204,7 +102660,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80213,7 +102676,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80246,7 +102716,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80272,7 +102749,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80283,7 +102767,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80299,7 +102790,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80316,7 +102814,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80340,7 +102845,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80351,7 +102863,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80367,7 +102886,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80384,7 +102910,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80393,7 +102926,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80404,7 +102944,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80438,7 +102985,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80447,7 +103001,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80458,7 +103019,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80487,7 +103055,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80498,7 +103073,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80514,7 +103096,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80541,7 +103130,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80552,7 +103148,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80568,7 +103171,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80585,7 +103195,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80599,7 +103216,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80616,7 +103240,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80663,7 +103294,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80674,7 +103312,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80690,7 +103335,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80704,7 +103356,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80717,7 +103376,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80732,7 +103398,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80743,7 +103416,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80752,7 +103432,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80763,7 +103450,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80776,7 +103470,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80800,7 +103501,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80811,7 +103519,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80827,7 +103542,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80853,7 +103575,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80864,7 +103593,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80880,7 +103616,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80907,7 +103650,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80918,7 +103668,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -80934,7 +103691,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81052,7 +103816,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81067,7 +103838,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81098,7 +103876,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81118,7 +103903,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81130,7 +103922,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81153,7 +103952,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81186,7 +103992,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81206,7 +104019,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81220,7 +104040,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81238,7 +104065,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81261,7 +104095,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81272,7 +104113,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81288,7 +104136,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81315,7 +104170,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81326,7 +104188,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81342,7 +104211,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81375,7 +104251,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81386,7 +104269,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81402,7 +104292,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81416,7 +104313,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81432,7 +104336,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81449,7 +104360,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81473,7 +104391,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81484,7 +104409,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81500,7 +104432,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81514,7 +104453,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81564,7 +104510,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81576,7 +104529,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81591,7 +104551,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81604,7 +104571,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81618,7 +104592,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81668,7 +104649,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81680,7 +104668,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81706,7 +104701,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81717,7 +104719,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81733,7 +104742,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81763,7 +104779,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81774,7 +104797,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81790,7 +104820,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81819,7 +104856,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81830,7 +104874,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81846,7 +104897,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81860,7 +104918,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81872,7 +104937,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81922,7 +104994,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81934,7 +105013,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81960,7 +105046,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81971,7 +105064,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -81987,7 +105087,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82013,7 +105120,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82026,7 +105140,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82040,7 +105161,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82054,7 +105182,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82066,7 +105201,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82116,7 +105258,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82128,7 +105277,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82154,7 +105310,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82165,7 +105328,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82181,7 +105351,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82195,7 +105372,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82211,7 +105395,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82226,7 +105417,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82239,7 +105437,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82257,7 +105462,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82268,7 +105480,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82318,7 +105537,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82330,7 +105556,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82356,7 +105589,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82367,7 +105607,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82383,7 +105630,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82426,7 +105680,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82437,7 +105698,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82453,7 +105721,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82480,7 +105755,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82491,7 +105773,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82507,7 +105796,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82534,7 +105830,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82545,7 +105848,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82561,7 +105871,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82578,7 +105895,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82601,7 +105925,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82673,7 +106004,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82684,7 +106022,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82700,7 +106045,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82717,7 +106069,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82738,7 +106097,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82761,7 +106127,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82772,7 +106145,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82788,7 +106168,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82815,7 +106202,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82824,7 +106218,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82835,7 +106236,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82872,7 +106280,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82883,7 +106298,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82899,7 +106321,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82916,7 +106345,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82931,7 +106367,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82942,7 +106385,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82965,7 +106415,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82976,7 +106433,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -82992,7 +106456,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83009,7 +106480,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83029,7 +106507,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83042,7 +106527,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83057,7 +106549,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83068,7 +106567,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83079,7 +106585,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83102,7 +106615,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83113,7 +106633,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83129,7 +106656,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83156,7 +106690,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83167,7 +106708,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83183,7 +106731,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83210,7 +106765,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83221,7 +106783,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83237,7 +106806,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83253,7 +106829,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83267,7 +106850,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83279,7 +106869,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83290,7 +106887,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83340,7 +106944,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83352,7 +106963,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83378,7 +106996,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83389,7 +107014,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83405,7 +107037,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83467,7 +107106,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83488,7 +107134,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83511,7 +107164,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83522,7 +107182,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83538,7 +107205,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83555,7 +107229,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83569,7 +107250,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83583,7 +107271,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83597,7 +107292,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83606,7 +107308,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83617,7 +107326,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83632,7 +107348,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83682,7 +107405,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83694,7 +107424,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83720,7 +107457,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83731,7 +107475,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83747,7 +107498,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83777,7 +107535,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83815,7 +107580,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83826,7 +107598,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83842,7 +107621,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83880,7 +107666,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83891,7 +107684,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83907,7 +107707,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83924,7 +107731,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83938,7 +107752,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -83988,7 +107809,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84000,7 +107828,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84026,7 +107861,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84037,7 +107879,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84053,7 +107902,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84070,7 +107926,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84092,7 +107955,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84106,7 +107976,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84118,7 +107995,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84131,7 +108015,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84155,7 +108046,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84166,7 +108064,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84182,7 +108087,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84214,7 +108126,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84223,7 +108142,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84256,7 +108182,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84282,7 +108215,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84293,7 +108233,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84309,7 +108256,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84326,7 +108280,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84350,7 +108311,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84361,7 +108329,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84377,7 +108352,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84394,7 +108376,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84403,7 +108392,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84414,7 +108410,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84448,7 +108451,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84457,7 +108467,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84468,7 +108485,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84497,7 +108521,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84508,7 +108539,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84524,7 +108562,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84551,7 +108596,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84562,7 +108614,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84578,7 +108637,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84595,7 +108661,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84609,7 +108682,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84626,7 +108706,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84673,7 +108760,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84684,7 +108778,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84700,7 +108801,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84714,7 +108822,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84723,7 +108838,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84734,7 +108856,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84747,7 +108876,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84762,7 +108898,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84773,7 +108916,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84796,7 +108946,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84807,7 +108964,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84823,7 +108987,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84850,7 +109021,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84861,7 +109039,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84877,7 +109062,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84903,7 +109095,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84914,7 +109113,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -84930,7 +109136,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85094,7 +109307,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85117,7 +109337,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85129,7 +109356,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85179,7 +109413,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85191,7 +109432,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85206,7 +109454,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85219,7 +109474,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85233,7 +109495,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85283,7 +109552,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85295,7 +109571,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85321,7 +109604,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85354,7 +109644,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85374,7 +109671,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85388,7 +109692,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85406,7 +109717,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85429,7 +109747,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85440,7 +109765,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85456,7 +109788,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85483,7 +109822,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85494,7 +109840,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85510,7 +109863,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85543,7 +109903,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85554,7 +109921,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85570,7 +109944,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85584,7 +109965,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85600,7 +109988,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85630,7 +110025,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85641,7 +110043,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85657,7 +110066,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85686,7 +110102,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85697,7 +110120,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85713,7 +110143,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85739,7 +110176,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85770,7 +110214,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85790,7 +110241,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85802,7 +110260,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85825,7 +110290,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85836,7 +110308,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85852,7 +110331,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85869,7 +110355,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85893,7 +110386,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85904,7 +110404,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85920,7 +110427,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85934,7 +110448,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85984,7 +110505,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -85996,7 +110524,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86022,7 +110557,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86033,7 +110575,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86049,7 +110598,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86063,7 +110619,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86076,7 +110639,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86090,7 +110660,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86102,7 +110679,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86114,7 +110698,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86164,7 +110755,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86176,7 +110774,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86202,7 +110807,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86213,7 +110825,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86229,7 +110848,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86243,7 +110869,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86259,7 +110892,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86274,7 +110914,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86287,7 +110934,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86305,7 +110959,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86316,7 +110977,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86366,7 +111034,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86378,7 +111053,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86404,7 +111086,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86415,7 +111104,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86431,7 +111127,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86474,7 +111177,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86485,7 +111195,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86501,7 +111218,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86528,7 +111252,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86539,7 +111270,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86555,7 +111293,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86582,7 +111327,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86593,7 +111345,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86609,7 +111368,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86623,7 +111389,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86673,7 +111446,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86685,7 +111465,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86711,7 +111498,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86722,7 +111516,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86738,7 +111539,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86800,7 +111608,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86821,7 +111636,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86844,7 +111666,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86855,7 +111684,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86871,7 +111707,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86888,7 +111731,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86897,7 +111747,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86908,7 +111765,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86945,7 +111809,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86956,7 +111827,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86972,7 +111850,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -86989,7 +111874,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87004,7 +111896,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87015,7 +111914,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87038,7 +111944,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87049,7 +111962,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87065,7 +111985,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87082,7 +112009,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87096,7 +112030,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87105,7 +112046,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87116,7 +112064,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87131,7 +112086,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87181,7 +112143,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87193,7 +112162,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87219,7 +112195,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87230,7 +112213,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87246,7 +112236,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87276,7 +112273,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87314,7 +112318,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87325,7 +112336,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87341,7 +112359,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87379,7 +112404,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87390,7 +112422,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87406,7 +112445,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87423,7 +112469,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87437,7 +112490,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87487,7 +112547,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87499,7 +112566,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87525,7 +112599,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87536,7 +112617,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87552,7 +112640,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87569,7 +112664,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87591,7 +112693,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87605,7 +112714,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87617,7 +112733,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87630,7 +112753,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87654,7 +112784,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87665,7 +112802,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87681,7 +112825,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87713,7 +112864,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87722,7 +112880,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87755,7 +112920,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87781,7 +112953,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87792,7 +112971,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87808,7 +112994,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87825,7 +113018,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87849,7 +113049,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87860,7 +113067,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87876,7 +113090,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87893,7 +113114,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87902,7 +113130,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87913,7 +113148,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87947,7 +113189,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87956,7 +113205,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87967,7 +113223,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -87996,7 +113259,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88007,7 +113277,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88023,7 +113300,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88050,7 +113334,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88061,7 +113352,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88077,7 +113375,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88094,7 +113399,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88108,7 +113420,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88125,7 +113444,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88172,7 +113498,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88183,7 +113516,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88199,7 +113539,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88215,7 +113562,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88229,7 +113583,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88243,7 +113604,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88257,7 +113625,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88280,7 +113655,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88352,7 +113734,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88363,7 +113752,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88379,7 +113775,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88396,7 +113799,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88417,7 +113827,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88440,7 +113857,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88451,7 +113875,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88467,7 +113898,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88494,7 +113932,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88508,7 +113953,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88522,7 +113974,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88542,7 +114001,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88555,7 +114021,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88570,7 +114043,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88581,7 +114061,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88592,7 +114079,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88615,7 +114109,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88626,7 +114127,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88642,7 +114150,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88669,7 +114184,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88680,7 +114202,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88696,7 +114225,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88723,7 +114259,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88734,7 +114277,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88750,7 +114300,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88825,7 +114382,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88836,7 +114400,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88852,7 +114423,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88985,7 +114563,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -88994,7 +114579,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89025,7 +114617,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89045,7 +114644,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89057,7 +114663,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89080,7 +114693,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89113,7 +114733,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89133,7 +114760,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89147,7 +114781,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89165,7 +114806,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89188,7 +114836,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89199,7 +114854,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89215,7 +114877,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89242,7 +114911,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89253,7 +114929,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89269,7 +114952,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89302,7 +114992,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89313,7 +115010,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89329,7 +115033,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89343,7 +115054,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89359,7 +115077,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89376,7 +115101,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89400,7 +115132,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89411,7 +115150,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89427,7 +115173,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89441,7 +115194,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89491,7 +115251,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89503,7 +115270,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89518,7 +115292,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89531,7 +115312,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89545,7 +115333,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89595,7 +115390,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89607,7 +115409,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89633,7 +115442,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89644,7 +115460,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89660,7 +115483,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89690,7 +115520,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89701,7 +115538,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89717,7 +115561,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89746,7 +115597,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89757,7 +115615,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89773,7 +115638,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89787,7 +115659,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89799,7 +115678,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89849,7 +115735,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89861,7 +115754,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89887,7 +115787,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89898,7 +115805,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89914,7 +115828,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89940,7 +115861,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89953,7 +115881,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89967,7 +115902,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89981,7 +115923,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -89993,7 +115942,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90043,7 +115999,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90055,7 +116018,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90081,7 +116051,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90092,7 +116069,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90108,7 +116092,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90122,7 +116113,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90138,7 +116136,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90153,7 +116158,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90166,7 +116178,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90184,7 +116203,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90195,7 +116221,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90245,7 +116278,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90257,7 +116297,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90283,7 +116330,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90294,7 +116348,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90310,7 +116371,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90353,7 +116421,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90364,7 +116439,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90380,7 +116462,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90407,7 +116496,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90418,7 +116514,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90434,7 +116537,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90461,7 +116571,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90472,7 +116589,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90488,7 +116612,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90505,7 +116636,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90528,7 +116666,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90600,7 +116745,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90611,7 +116763,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90627,7 +116786,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90644,7 +116810,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90665,7 +116838,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90688,7 +116868,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90699,7 +116886,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90715,7 +116909,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90742,7 +116943,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90751,7 +116959,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90762,7 +116977,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90799,7 +117021,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90810,7 +117039,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90826,7 +117062,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90843,7 +117086,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90858,7 +117108,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90869,7 +117126,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90892,7 +117156,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90903,7 +117174,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90919,7 +117197,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90936,7 +117221,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90956,7 +117248,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90969,7 +117268,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90984,7 +117290,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -90995,7 +117308,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91006,7 +117326,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91029,7 +117356,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91040,7 +117374,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91056,7 +117397,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91083,7 +117431,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91094,7 +117449,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91110,7 +117472,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91137,7 +117506,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91148,7 +117524,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91164,7 +117547,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91180,7 +117570,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91194,7 +117591,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91206,7 +117610,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91217,7 +117628,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91267,7 +117685,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91279,7 +117704,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91305,7 +117737,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91316,7 +117755,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91332,7 +117778,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91394,7 +117847,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91415,7 +117875,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91438,7 +117905,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91449,7 +117923,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91465,7 +117946,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91482,7 +117970,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91496,7 +117991,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91510,7 +118012,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91524,7 +118033,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91533,7 +118049,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91544,7 +118067,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91559,7 +118089,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91609,7 +118146,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91621,7 +118165,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91647,7 +118198,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91658,7 +118216,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91674,7 +118239,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91704,7 +118276,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91742,7 +118321,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91753,7 +118339,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91769,7 +118362,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91807,7 +118407,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91818,7 +118425,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91834,7 +118448,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91851,7 +118472,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91865,7 +118493,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91915,7 +118550,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91927,7 +118569,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91953,7 +118602,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91964,7 +118620,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91980,7 +118643,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -91997,7 +118667,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92019,7 +118696,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92033,7 +118717,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92045,7 +118736,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92058,7 +118756,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92082,7 +118787,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92093,7 +118805,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92109,7 +118828,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92141,7 +118867,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92150,7 +118883,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92183,7 +118923,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92209,7 +118956,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92220,7 +118974,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92236,7 +118997,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92253,7 +119021,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92277,7 +119052,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92288,7 +119070,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92304,7 +119093,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92321,7 +119117,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92330,7 +119133,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92341,7 +119151,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92375,7 +119192,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92384,7 +119208,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92395,7 +119226,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92424,7 +119262,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92435,7 +119280,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92451,7 +119303,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92478,7 +119337,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92489,7 +119355,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92505,7 +119378,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92522,7 +119402,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92536,7 +119423,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92553,7 +119447,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92600,7 +119501,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92611,7 +119519,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92627,7 +119542,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92662,7 +119584,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92685,7 +119614,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92696,7 +119632,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92712,7 +119655,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92721,7 +119671,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92753,7 +119710,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92776,7 +119740,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92787,7 +119758,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92803,7 +119781,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92955,7 +119940,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -92970,7 +119962,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93020,7 +120019,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93032,7 +120038,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93047,7 +120060,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93060,7 +120080,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93074,7 +120101,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93124,7 +120158,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93136,7 +120177,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93162,7 +120210,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93195,7 +120250,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93215,7 +120277,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93229,7 +120298,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93247,7 +120323,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93270,7 +120353,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93281,7 +120371,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93297,7 +120394,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93324,7 +120428,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93335,7 +120446,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93351,7 +120469,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93384,7 +120509,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93395,7 +120527,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93411,7 +120550,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93425,7 +120571,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93441,7 +120594,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93471,7 +120631,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93482,7 +120649,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93498,7 +120672,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93527,7 +120708,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93538,7 +120726,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93554,7 +120749,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93584,7 +120786,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93593,7 +120802,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93624,7 +120840,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93644,7 +120867,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93656,7 +120886,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93679,7 +120916,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93690,7 +120934,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93706,7 +120957,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93723,7 +120981,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93747,7 +121012,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93758,7 +121030,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93774,7 +121053,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93788,7 +121074,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93838,7 +121131,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93850,7 +121150,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93876,7 +121183,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93887,7 +121201,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93903,7 +121224,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93917,7 +121245,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93929,7 +121264,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93979,7 +121321,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -93991,7 +121340,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94017,7 +121373,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94028,7 +121391,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94044,7 +121414,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94070,7 +121447,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94083,7 +121467,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94097,7 +121488,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94111,7 +121509,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94123,7 +121528,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94173,7 +121585,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94185,7 +121604,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94211,7 +121637,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94222,7 +121655,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94238,7 +121678,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94252,7 +121699,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94268,7 +121722,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94283,7 +121744,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94296,7 +121764,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94314,7 +121789,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94325,7 +121807,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94375,7 +121864,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94387,7 +121883,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94413,7 +121916,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94424,7 +121934,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94440,7 +121957,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94483,7 +122007,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94494,7 +122025,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94510,7 +122048,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94537,7 +122082,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94548,7 +122100,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94564,7 +122123,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94591,7 +122157,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94602,7 +122175,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94618,7 +122198,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94635,7 +122222,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94658,7 +122252,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94730,7 +122331,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94741,7 +122349,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94757,7 +122372,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94774,7 +122396,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94795,7 +122424,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94818,7 +122454,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94829,7 +122472,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94845,7 +122495,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94872,7 +122529,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94881,7 +122545,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94892,7 +122563,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94929,7 +122607,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94940,7 +122625,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94956,7 +122648,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94973,7 +122672,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94988,7 +122694,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -94999,7 +122712,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95022,7 +122742,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95033,7 +122760,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95049,7 +122783,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95066,7 +122807,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95086,7 +122834,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95099,7 +122854,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95114,7 +122876,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95125,7 +122894,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95136,7 +122912,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95159,7 +122942,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95170,7 +122960,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95186,7 +122983,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95213,7 +123017,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95224,7 +123035,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95240,7 +123058,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95267,7 +123092,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95278,7 +123110,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95294,7 +123133,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95310,7 +123156,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95324,7 +123177,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95336,7 +123196,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95347,7 +123214,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95397,7 +123271,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95409,7 +123290,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95435,7 +123323,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95446,7 +123341,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95462,7 +123364,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95524,7 +123433,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95545,7 +123461,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95568,7 +123491,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95579,7 +123509,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95595,7 +123532,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95612,7 +123556,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95626,7 +123577,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95640,7 +123598,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95654,7 +123619,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95668,7 +123640,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95682,7 +123661,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95732,7 +123718,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95744,7 +123737,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95770,7 +123770,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95781,7 +123788,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95797,7 +123811,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95814,7 +123835,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95836,7 +123864,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95850,7 +123885,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95862,7 +123904,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95875,7 +123924,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95899,7 +123955,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95910,7 +123973,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95926,7 +123996,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95958,7 +124035,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -95967,7 +124051,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96000,7 +124091,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96026,7 +124124,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96037,7 +124142,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96053,7 +124165,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96070,7 +124189,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96094,7 +124220,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96105,7 +124238,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96121,7 +124261,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96138,7 +124285,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96147,7 +124301,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96158,7 +124319,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96192,7 +124360,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96201,7 +124376,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96212,7 +124394,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96241,7 +124430,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96252,7 +124448,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96268,7 +124471,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96295,7 +124505,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96306,7 +124523,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96322,7 +124546,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96339,7 +124570,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96353,7 +124591,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96370,7 +124615,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96417,7 +124669,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96428,7 +124687,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96444,7 +124710,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96458,7 +124731,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96473,7 +124753,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96523,7 +124810,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96535,7 +124829,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96561,7 +124862,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96572,7 +124880,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96588,7 +124903,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96618,7 +124940,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96656,7 +124985,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96667,7 +125003,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96683,7 +125026,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96721,7 +125071,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96732,7 +125089,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96748,7 +125112,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96789,7 +125160,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96800,7 +125178,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96816,7 +125201,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96940,7 +125332,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96949,7 +125348,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -96980,7 +125386,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97000,7 +125413,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97012,7 +125432,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97035,7 +125462,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97068,7 +125502,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97088,7 +125529,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97102,7 +125550,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97120,7 +125575,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97143,7 +125605,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97154,7 +125623,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97170,7 +125646,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97197,7 +125680,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97208,7 +125698,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97224,7 +125721,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97257,7 +125761,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97268,7 +125779,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97284,7 +125802,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97298,7 +125823,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97314,7 +125846,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97331,7 +125870,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97355,7 +125901,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97366,7 +125919,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97382,7 +125942,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97396,7 +125963,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97446,7 +126020,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97458,7 +126039,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97473,7 +126061,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97486,7 +126081,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97500,7 +126102,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97550,7 +126159,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97562,7 +126178,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97588,7 +126211,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97599,7 +126229,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97615,7 +126252,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97645,7 +126289,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97656,7 +126307,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97672,7 +126330,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97701,7 +126366,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97712,7 +126384,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97728,7 +126407,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97742,7 +126428,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97754,7 +126447,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97804,7 +126504,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97816,7 +126523,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97842,7 +126556,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97853,7 +126574,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97869,7 +126597,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97895,7 +126630,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97908,7 +126650,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97922,7 +126671,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97936,7 +126692,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97948,7 +126711,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -97998,7 +126768,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98010,7 +126787,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98036,7 +126820,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98047,7 +126838,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98063,7 +126861,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98077,7 +126882,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98093,7 +126905,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98108,7 +126927,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98121,7 +126947,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98139,7 +126972,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98150,7 +126990,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98200,7 +127047,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98212,7 +127066,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98238,7 +127099,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98249,7 +127117,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98265,7 +127140,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98308,7 +127190,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98319,7 +127208,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98335,7 +127231,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98362,7 +127265,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98373,7 +127283,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98389,7 +127306,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98416,7 +127340,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98427,7 +127358,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98443,7 +127381,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98460,7 +127405,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98483,7 +127435,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98555,7 +127514,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98566,7 +127532,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98582,7 +127555,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98599,7 +127579,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98620,7 +127607,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98643,7 +127637,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98654,7 +127655,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98670,7 +127678,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98697,7 +127712,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98706,7 +127728,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98717,7 +127746,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98754,7 +127790,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98765,7 +127808,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98781,7 +127831,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98798,7 +127855,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98813,7 +127877,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98824,7 +127895,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98847,7 +127925,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98858,7 +127943,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98874,7 +127966,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98891,7 +127990,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98911,7 +128017,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98924,7 +128037,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98939,7 +128059,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98950,7 +128077,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98961,7 +128095,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98984,7 +128125,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -98995,7 +128143,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99011,7 +128166,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99038,7 +128200,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99049,7 +128218,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99065,7 +128241,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99092,7 +128275,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99103,7 +128293,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99119,7 +128316,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99135,7 +128339,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99149,7 +128360,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99161,7 +128379,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99172,7 +128397,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99222,7 +128454,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99234,7 +128473,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99260,7 +128506,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99271,7 +128524,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99287,7 +128547,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99349,7 +128616,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99370,7 +128644,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99393,7 +128674,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99404,7 +128692,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99420,7 +128715,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99437,7 +128739,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99451,7 +128760,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99465,7 +128781,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99479,7 +128802,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99488,7 +128818,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99499,7 +128836,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99514,7 +128858,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99564,7 +128915,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99576,7 +128934,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99602,7 +128967,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99613,7 +128985,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99629,7 +129008,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99659,7 +129045,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99697,7 +129090,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99708,7 +129108,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99724,7 +129131,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99762,7 +129176,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99773,7 +129194,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99789,7 +129217,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99806,7 +129241,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99820,7 +129262,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99870,7 +129319,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99882,7 +129338,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99908,7 +129371,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99919,7 +129389,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99935,7 +129412,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99952,7 +129436,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99974,7 +129465,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -99988,7 +129486,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100000,7 +129505,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100013,7 +129525,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100037,7 +129556,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100048,7 +129574,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100064,7 +129597,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100096,7 +129636,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100105,7 +129652,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100138,7 +129692,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100164,7 +129725,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100175,7 +129743,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100191,7 +129766,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100208,7 +129790,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100232,7 +129821,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100243,7 +129839,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100259,7 +129862,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100276,7 +129886,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100285,7 +129902,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100296,7 +129920,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100330,7 +129961,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100339,7 +129977,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100350,7 +129995,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100379,7 +130031,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100390,7 +130049,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100406,7 +130072,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100433,7 +130106,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100444,7 +130124,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100460,7 +130147,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100477,7 +130171,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100491,7 +130192,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100508,7 +130216,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100555,7 +130270,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100566,7 +130288,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100582,7 +130311,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100596,7 +130332,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100631,7 +130374,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100642,7 +130392,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100658,7 +130415,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100790,7 +130554,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100799,7 +130570,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100830,7 +130608,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100850,7 +130635,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100862,7 +130654,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100885,7 +130684,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100918,7 +130724,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100938,7 +130751,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100952,7 +130772,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100970,7 +130797,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -100993,7 +130827,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101004,7 +130845,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101020,7 +130868,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101047,7 +130902,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101058,7 +130920,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101074,7 +130943,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101107,7 +130983,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101118,7 +131001,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101134,7 +131024,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101148,7 +131045,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101164,7 +131068,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101181,7 +131092,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101205,7 +131123,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101216,7 +131141,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101232,7 +131164,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101246,7 +131185,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101296,7 +131242,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101308,7 +131261,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101323,7 +131283,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101336,7 +131303,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101350,7 +131324,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101400,7 +131381,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101412,7 +131400,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101438,7 +131433,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101449,7 +131451,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101465,7 +131474,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101495,7 +131511,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101506,7 +131529,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101522,7 +131552,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101551,7 +131588,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101562,7 +131606,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101578,7 +131629,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101592,7 +131650,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101604,7 +131669,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101654,7 +131726,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101666,7 +131745,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101692,7 +131778,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101703,7 +131796,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101719,7 +131819,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101745,7 +131852,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101758,7 +131872,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101772,7 +131893,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101786,7 +131914,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101798,7 +131933,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101848,7 +131990,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101860,7 +132009,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101886,7 +132042,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101897,7 +132060,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101913,7 +132083,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101927,7 +132104,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101943,7 +132127,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101958,7 +132149,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101971,7 +132169,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -101989,7 +132194,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102000,7 +132212,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102050,7 +132269,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102062,7 +132288,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102088,7 +132321,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102099,7 +132339,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102115,7 +132362,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102158,7 +132412,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102169,7 +132430,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102185,7 +132453,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102212,7 +132487,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102223,7 +132505,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102239,7 +132528,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102266,7 +132562,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102277,7 +132580,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102293,7 +132603,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102310,7 +132627,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102333,7 +132657,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102405,7 +132736,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102416,7 +132754,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102432,7 +132777,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102449,7 +132801,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102470,7 +132829,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102493,7 +132859,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102504,7 +132877,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102520,7 +132900,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102547,7 +132934,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102556,7 +132950,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102567,7 +132968,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102604,7 +133012,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102615,7 +133030,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102631,7 +133053,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102648,7 +133077,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102663,7 +133099,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102674,7 +133117,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102697,7 +133147,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102708,7 +133165,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102724,7 +133188,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102741,7 +133212,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102761,7 +133239,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102774,7 +133259,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102789,7 +133281,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102800,7 +133299,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102811,7 +133317,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102834,7 +133347,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102845,7 +133365,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102861,7 +133388,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102888,7 +133422,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102899,7 +133440,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102915,7 +133463,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102942,7 +133497,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102953,7 +133515,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102969,7 +133538,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102985,7 +133561,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -102999,7 +133582,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103011,7 +133601,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103022,7 +133619,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103072,7 +133676,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103084,7 +133695,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103110,7 +133728,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103121,7 +133746,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103137,7 +133769,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103199,7 +133838,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103220,7 +133866,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103243,7 +133896,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103254,7 +133914,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103270,7 +133937,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103287,7 +133961,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103301,7 +133982,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103315,7 +134003,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103329,7 +134024,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103338,7 +134040,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103349,7 +134058,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103364,7 +134080,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103414,7 +134137,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103426,7 +134156,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103452,7 +134189,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103463,7 +134207,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103479,7 +134230,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103509,7 +134267,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103547,7 +134312,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103558,7 +134330,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103574,7 +134353,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103612,7 +134398,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103623,7 +134416,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103639,7 +134439,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103656,7 +134463,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103670,7 +134484,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103720,7 +134541,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103732,7 +134560,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103758,7 +134593,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103769,7 +134611,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103785,7 +134634,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103802,7 +134658,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103824,7 +134687,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103838,7 +134708,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103850,7 +134727,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103863,7 +134747,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103887,7 +134778,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103898,7 +134796,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103914,7 +134819,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103946,7 +134858,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103955,7 +134874,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -103988,7 +134914,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104014,7 +134947,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104025,7 +134965,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104041,7 +134988,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104058,7 +135012,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104082,7 +135043,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104093,7 +135061,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104109,7 +135084,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104126,7 +135108,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104135,7 +135124,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104146,7 +135142,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104180,7 +135183,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104189,7 +135199,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104200,7 +135217,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104229,7 +135253,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104240,7 +135271,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104256,7 +135294,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104283,7 +135328,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104294,7 +135346,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104310,7 +135369,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104327,7 +135393,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104341,7 +135414,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104358,7 +135438,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104405,7 +135492,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104416,7 +135510,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104432,7 +135533,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104452,7 +135560,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104489,7 +135604,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104500,7 +135622,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104516,7 +135645,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104525,7 +135661,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104542,7 +135685,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104579,7 +135729,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104590,7 +135747,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104606,7 +135770,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104706,7 +135877,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104734,7 +135912,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104767,7 +135952,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104787,7 +135979,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104801,7 +136000,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104819,7 +136025,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104842,7 +136055,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104853,7 +136073,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104869,7 +136096,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104896,7 +136130,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104907,7 +136148,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104923,7 +136171,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104956,7 +136211,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104967,7 +136229,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104983,7 +136252,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -104997,7 +136273,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105013,7 +136296,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105041,7 +136331,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105052,7 +136349,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105068,7 +136372,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105164,7 +136475,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105188,7 +136506,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105221,7 +136546,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105241,7 +136573,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105255,7 +136594,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105273,7 +136619,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105296,7 +136649,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105307,7 +136667,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105323,7 +136690,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105350,7 +136724,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105361,7 +136742,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105377,7 +136765,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105410,7 +136805,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105421,7 +136823,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105437,7 +136846,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105451,7 +136867,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105467,7 +136890,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105491,7 +136921,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105502,7 +136939,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105518,7 +136962,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105546,7 +136997,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "subject": { "type": "string" @@ -105664,7 +137122,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105679,7 +137144,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105710,7 +137182,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105730,7 +137209,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105742,7 +137228,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105765,7 +137258,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105798,7 +137298,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105818,7 +137325,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105832,7 +137346,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105850,7 +137371,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105873,7 +137401,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105884,7 +137419,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105900,7 +137442,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105927,7 +137476,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105938,7 +137494,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105954,7 +137517,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105987,7 +137557,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -105998,7 +137575,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106014,7 +137598,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106028,7 +137619,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106044,7 +137642,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106061,7 +137666,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106085,7 +137697,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106096,7 +137715,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106112,7 +137738,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106126,7 +137759,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106176,7 +137816,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106188,7 +137835,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106203,7 +137857,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106216,7 +137877,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106230,7 +137898,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106280,7 +137955,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106292,7 +137974,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106318,7 +138007,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106329,7 +138025,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106345,7 +138048,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106375,7 +138085,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106386,7 +138103,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106402,7 +138126,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106431,7 +138162,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106442,7 +138180,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106458,7 +138203,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106472,7 +138224,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106484,7 +138243,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106534,7 +138300,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106546,7 +138319,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106572,7 +138352,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106583,7 +138370,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106599,7 +138393,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106625,7 +138426,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106638,7 +138446,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106652,7 +138467,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106666,7 +138488,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106678,7 +138507,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106728,7 +138564,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106740,7 +138583,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106766,7 +138616,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106777,7 +138634,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106793,7 +138657,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106807,7 +138678,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106823,7 +138701,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106838,7 +138723,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106851,7 +138743,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106869,7 +138768,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106880,7 +138786,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106930,7 +138843,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106942,7 +138862,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106968,7 +138895,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106979,7 +138913,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -106995,7 +138936,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107038,7 +138986,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107049,7 +139004,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107065,7 +139027,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107092,7 +139061,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107103,7 +139079,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107119,7 +139102,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107146,7 +139136,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107157,7 +139154,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107173,7 +139177,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107190,7 +139201,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107213,7 +139231,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107285,7 +139310,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107296,7 +139328,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107312,7 +139351,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107329,7 +139375,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107350,7 +139403,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107373,7 +139433,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107384,7 +139451,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107400,7 +139474,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107427,7 +139508,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107436,7 +139524,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107447,7 +139542,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107484,7 +139586,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107495,7 +139604,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107511,7 +139627,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107528,7 +139651,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107543,7 +139673,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107554,7 +139691,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107577,7 +139721,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107588,7 +139739,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107604,7 +139762,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107621,7 +139786,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107641,7 +139813,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107654,7 +139833,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107669,7 +139855,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107680,7 +139873,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107691,7 +139891,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107714,7 +139921,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107725,7 +139939,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107741,7 +139962,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107768,7 +139996,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107779,7 +140014,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107795,7 +140037,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107822,7 +140071,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107833,7 +140089,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107849,7 +140112,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107865,7 +140135,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107879,7 +140156,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107891,7 +140175,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107902,7 +140193,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107952,7 +140250,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107964,7 +140269,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -107990,7 +140302,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108001,7 +140320,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108017,7 +140343,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108079,7 +140412,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108100,7 +140440,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108123,7 +140470,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108134,7 +140488,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108150,7 +140511,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108167,7 +140535,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108181,7 +140556,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108195,7 +140577,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108209,7 +140598,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108218,7 +140614,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108229,7 +140632,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108244,7 +140654,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108294,7 +140711,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108306,7 +140730,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108332,7 +140763,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108343,7 +140781,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108359,7 +140804,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108389,7 +140841,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108427,7 +140886,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108438,7 +140904,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108454,7 +140927,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108492,7 +140972,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108503,7 +140990,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108519,7 +141013,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108536,7 +141037,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108550,7 +141058,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108600,7 +141115,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108612,7 +141134,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108638,7 +141167,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108649,7 +141185,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108665,7 +141208,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108682,7 +141232,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108704,7 +141261,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108718,7 +141282,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108730,7 +141301,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108743,7 +141321,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108767,7 +141352,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108778,7 +141370,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108794,7 +141393,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108826,7 +141432,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108835,7 +141448,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108868,7 +141488,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108894,7 +141521,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108905,7 +141539,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108921,7 +141562,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108938,7 +141586,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108962,7 +141617,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108973,7 +141635,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -108989,7 +141658,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109006,7 +141682,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109015,7 +141698,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109026,7 +141716,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109060,7 +141757,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109069,7 +141773,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109080,7 +141791,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109109,7 +141827,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109120,7 +141845,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109136,7 +141868,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109163,7 +141902,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109174,7 +141920,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109190,7 +141943,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109207,7 +141967,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109221,7 +141988,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109238,7 +142012,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109285,7 +142066,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109296,7 +142084,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109312,7 +142107,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109326,7 +142128,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109337,7 +142146,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109360,7 +142176,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109371,7 +142194,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109387,7 +142217,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109516,7 +142353,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109537,7 +142381,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109568,7 +142419,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109588,7 +142446,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109600,7 +142465,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109623,7 +142495,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109656,7 +142535,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109676,7 +142562,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109690,7 +142583,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109708,7 +142608,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109731,7 +142638,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109742,7 +142656,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109758,7 +142679,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109785,7 +142713,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109796,7 +142731,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109812,7 +142754,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109845,7 +142794,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109856,7 +142812,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109872,7 +142835,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109886,7 +142856,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109902,7 +142879,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109919,7 +142903,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109943,7 +142934,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109954,7 +142952,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109970,7 +142975,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -109984,7 +142996,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110034,7 +143053,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110046,7 +143072,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110061,7 +143094,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110074,7 +143114,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110088,7 +143135,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110138,7 +143192,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110150,7 +143211,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110176,7 +143244,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110187,7 +143262,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110203,7 +143285,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110233,7 +143322,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110244,7 +143340,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110260,7 +143363,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110289,7 +143399,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110300,7 +143417,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110316,7 +143440,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110330,7 +143461,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110342,7 +143480,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110392,7 +143537,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110404,7 +143556,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110430,7 +143589,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110441,7 +143607,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110457,7 +143630,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110483,7 +143663,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110496,7 +143683,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110510,7 +143704,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110524,7 +143725,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110536,7 +143744,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110586,7 +143801,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110598,7 +143820,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110624,7 +143853,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110635,7 +143871,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110651,7 +143894,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110665,7 +143915,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110681,7 +143938,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110696,7 +143960,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110709,7 +143980,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110727,7 +144005,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110738,7 +144023,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110788,7 +144080,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110800,7 +144099,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110826,7 +144132,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110837,7 +144150,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110853,7 +144173,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110896,7 +144223,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110907,7 +144241,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110923,7 +144264,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110950,7 +144298,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110961,7 +144316,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -110977,7 +144339,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111004,7 +144373,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111015,7 +144391,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111031,7 +144414,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111048,7 +144438,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111071,7 +144468,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111143,7 +144547,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111154,7 +144565,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111170,7 +144588,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111187,7 +144612,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111208,7 +144640,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111231,7 +144670,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111242,7 +144688,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111258,7 +144711,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111285,7 +144745,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111294,7 +144761,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111305,7 +144779,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111342,7 +144823,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111353,7 +144841,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111369,7 +144864,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111386,7 +144888,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111401,7 +144910,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111412,7 +144928,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111435,7 +144958,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111446,7 +144976,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111462,7 +144999,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111479,7 +145023,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111499,7 +145050,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111512,7 +145070,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111527,7 +145092,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111538,7 +145110,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111549,7 +145128,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111572,7 +145158,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111583,7 +145176,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111599,7 +145199,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111626,7 +145233,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111637,7 +145251,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111653,7 +145274,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111680,7 +145308,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111691,7 +145326,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111707,7 +145349,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111723,7 +145372,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111737,7 +145393,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111749,7 +145412,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111760,7 +145430,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111810,7 +145487,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111822,7 +145506,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111848,7 +145539,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111859,7 +145557,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111875,7 +145580,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111937,7 +145649,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111958,7 +145677,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111981,7 +145707,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -111992,7 +145725,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112008,7 +145748,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112025,7 +145772,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112039,7 +145793,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112053,7 +145814,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112067,7 +145835,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112076,7 +145851,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112087,7 +145869,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112102,7 +145891,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112152,7 +145948,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112164,7 +145967,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112190,7 +146000,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112201,7 +146018,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112217,7 +146041,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112247,7 +146078,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112285,7 +146123,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112296,7 +146141,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112312,7 +146164,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112350,7 +146209,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112361,7 +146227,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112377,7 +146250,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112394,7 +146274,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112408,7 +146295,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112458,7 +146352,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112470,7 +146371,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112496,7 +146404,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112507,7 +146422,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112523,7 +146445,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112540,7 +146469,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112562,7 +146498,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112576,7 +146519,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112588,7 +146538,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112601,7 +146558,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112625,7 +146589,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112636,7 +146607,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112652,7 +146630,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112684,7 +146669,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112693,7 +146685,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112726,7 +146725,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112752,7 +146758,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112763,7 +146776,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112779,7 +146799,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112796,7 +146823,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112820,7 +146854,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112831,7 +146872,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112847,7 +146895,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112864,7 +146919,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112873,7 +146935,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112884,7 +146953,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112918,7 +146994,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112927,7 +147010,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112938,7 +147028,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112967,7 +147064,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112978,7 +147082,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -112994,7 +147105,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113021,7 +147139,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113032,7 +147157,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113048,7 +147180,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113065,7 +147204,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113079,7 +147225,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113096,7 +147249,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113143,7 +147303,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113154,7 +147321,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113170,7 +147344,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113212,7 +147393,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113223,7 +147411,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113239,7 +147434,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113260,7 +147462,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113299,7 +147508,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113310,7 +147526,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113326,7 +147549,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113428,7 +147658,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113458,7 +147695,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113491,7 +147735,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113511,7 +147762,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113525,7 +147783,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113543,7 +147808,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113566,7 +147838,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113577,7 +147856,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113593,7 +147879,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113620,7 +147913,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113631,7 +147931,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113647,7 +147954,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113680,7 +147994,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113691,7 +148012,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113707,7 +148035,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113721,7 +148056,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113737,7 +148079,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113767,7 +148116,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113778,7 +148134,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113794,7 +148157,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113910,7 +148280,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113931,7 +148308,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113943,7 +148327,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -113993,7 +148384,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114005,7 +148403,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114020,7 +148425,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114033,7 +148445,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114047,7 +148466,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114097,7 +148523,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114109,7 +148542,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114135,7 +148575,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114168,7 +148615,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114188,7 +148642,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114202,7 +148663,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114220,7 +148688,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114243,7 +148718,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114254,7 +148736,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114270,7 +148759,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114297,7 +148793,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114308,7 +148811,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114324,7 +148834,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114357,7 +148874,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114368,7 +148892,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114384,7 +148915,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114398,7 +148936,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114414,7 +148959,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114444,7 +148996,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114455,7 +149014,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114471,7 +149037,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114500,7 +149073,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114511,7 +149091,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114527,7 +149114,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114553,7 +149147,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114584,7 +149185,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114604,7 +149212,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114616,7 +149231,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114639,7 +149261,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114650,7 +149279,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114666,7 +149302,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114683,7 +149326,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114707,7 +149357,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114718,7 +149375,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114734,7 +149398,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114748,7 +149419,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114798,7 +149476,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114810,7 +149495,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114836,7 +149528,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114847,7 +149546,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114863,7 +149569,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114877,7 +149590,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114890,7 +149610,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114904,7 +149631,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114916,7 +149650,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114928,7 +149669,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114978,7 +149726,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -114990,7 +149745,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115016,7 +149778,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115027,7 +149796,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115043,7 +149819,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115057,7 +149840,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115073,7 +149863,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115088,7 +149885,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115101,7 +149905,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115119,7 +149930,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115130,7 +149948,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115180,7 +150005,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115192,7 +150024,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115218,7 +150057,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115229,7 +150075,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115245,7 +150098,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115288,7 +150148,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115299,7 +150166,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115315,7 +150189,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115342,7 +150223,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115353,7 +150241,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115369,7 +150264,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115396,7 +150298,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115407,7 +150316,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115423,7 +150339,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115437,7 +150360,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115487,7 +150417,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115499,7 +150436,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115525,7 +150469,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115536,7 +150487,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115552,7 +150510,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115614,7 +150579,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115635,7 +150607,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115658,7 +150637,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115669,7 +150655,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115685,7 +150678,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115702,7 +150702,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115711,7 +150718,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115722,7 +150736,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115759,7 +150780,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115770,7 +150798,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115786,7 +150821,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115803,7 +150845,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115818,7 +150867,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115829,7 +150885,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115852,7 +150915,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115863,7 +150933,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115879,7 +150956,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115896,7 +150980,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115910,7 +151001,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115919,7 +151017,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115930,7 +151035,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115945,7 +151057,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -115995,7 +151114,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116007,7 +151133,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116033,7 +151166,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116044,7 +151184,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116060,7 +151207,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116090,7 +151244,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116128,7 +151289,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116139,7 +151307,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116155,7 +151330,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116193,7 +151375,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116204,7 +151393,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116220,7 +151416,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116237,7 +151440,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116251,7 +151461,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116301,7 +151518,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116313,7 +151537,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116339,7 +151570,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116350,7 +151588,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116366,7 +151611,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116383,7 +151635,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116405,7 +151664,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116419,7 +151685,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116431,7 +151704,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116444,7 +151724,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116468,7 +151755,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116479,7 +151773,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116495,7 +151796,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116527,7 +151835,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116536,7 +151851,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116569,7 +151891,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116595,7 +151924,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116606,7 +151942,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116622,7 +151965,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116639,7 +151989,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116663,7 +152020,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116674,7 +152038,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116690,7 +152061,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116707,7 +152085,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116716,7 +152101,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116727,7 +152119,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116761,7 +152160,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116770,7 +152176,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116781,7 +152194,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116810,7 +152230,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116821,7 +152248,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116837,7 +152271,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116864,7 +152305,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116875,7 +152323,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116891,7 +152346,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116908,7 +152370,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116922,7 +152391,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116939,7 +152415,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116986,7 +152469,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -116997,7 +152487,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117013,7 +152510,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117029,7 +152533,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117043,7 +152554,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117057,7 +152575,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117071,7 +152596,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117094,7 +152626,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117166,7 +152705,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117177,7 +152723,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117193,7 +152746,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117210,7 +152770,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117231,7 +152798,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117254,7 +152828,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117265,7 +152846,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117281,7 +152869,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117308,7 +152903,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117322,7 +152924,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117336,7 +152945,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117356,7 +152972,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117369,7 +152992,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117384,7 +153014,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117395,7 +153032,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117406,7 +153050,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117429,7 +153080,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117440,7 +153098,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117456,7 +153121,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117483,7 +153155,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117494,7 +153173,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117510,7 +153196,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117537,7 +153230,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117548,7 +153248,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117564,7 +153271,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117590,7 +153304,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117601,7 +153322,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117617,7 +153345,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117803,7 +153538,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117817,7 +153559,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117867,7 +153616,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117879,7 +153635,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117894,7 +153657,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117907,7 +153677,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117921,7 +153698,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117971,7 +153755,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -117983,7 +153774,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118009,7 +153807,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118042,7 +153847,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118062,7 +153874,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118076,7 +153895,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118094,7 +153920,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118117,7 +153950,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118128,7 +153968,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118144,7 +153991,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118171,7 +154025,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118182,7 +154043,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118198,7 +154066,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118231,7 +154106,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118242,7 +154124,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118258,7 +154147,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118272,7 +154168,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118288,7 +154191,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118318,7 +154228,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118329,7 +154246,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118345,7 +154269,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118374,7 +154305,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118385,7 +154323,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118401,7 +154346,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118418,7 +154370,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118449,7 +154408,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118469,7 +154435,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118481,7 +154454,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118504,7 +154484,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118515,7 +154502,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118531,7 +154525,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118548,7 +154549,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118572,7 +154580,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118583,7 +154598,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118599,7 +154621,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118613,7 +154642,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118663,7 +154699,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118675,7 +154718,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118701,7 +154751,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118712,7 +154769,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118728,7 +154792,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118742,7 +154813,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118754,7 +154832,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118804,7 +154889,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118816,7 +154908,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118842,7 +154941,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118853,7 +154959,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118869,7 +154982,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118895,7 +155015,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118908,7 +155035,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118922,7 +155056,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118936,7 +155077,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118948,7 +155096,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -118998,7 +155153,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119010,7 +155172,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119036,7 +155205,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119047,7 +155223,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119063,7 +155246,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119077,7 +155267,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119093,7 +155290,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119108,7 +155312,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119121,7 +155332,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119139,7 +155357,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119150,7 +155375,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119200,7 +155432,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119212,7 +155451,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119238,7 +155484,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119249,7 +155502,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119265,7 +155525,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119308,7 +155575,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119319,7 +155593,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119335,7 +155616,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119362,7 +155650,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119373,7 +155668,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119389,7 +155691,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119416,7 +155725,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119427,7 +155743,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119443,7 +155766,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119460,7 +155790,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119483,7 +155820,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119555,7 +155899,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119566,7 +155917,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119582,7 +155940,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119599,7 +155964,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119620,7 +155992,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119643,7 +156022,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119654,7 +156040,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119670,7 +156063,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119697,7 +156097,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119706,7 +156113,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119717,7 +156131,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119754,7 +156175,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119765,7 +156193,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119781,7 +156216,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119798,7 +156240,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119813,7 +156262,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119824,7 +156280,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119847,7 +156310,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119858,7 +156328,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119874,7 +156351,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119891,7 +156375,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119911,7 +156402,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119924,7 +156422,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119939,7 +156444,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119950,7 +156462,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119961,7 +156480,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119984,7 +156510,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -119995,7 +156528,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120011,7 +156551,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120038,7 +156585,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120049,7 +156603,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120065,7 +156626,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120092,7 +156660,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120103,7 +156678,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120119,7 +156701,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120135,7 +156724,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120149,7 +156745,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120161,7 +156764,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120172,7 +156782,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120222,7 +156839,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120234,7 +156858,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120260,7 +156891,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120271,7 +156909,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120287,7 +156932,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120349,7 +157001,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120370,7 +157029,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120393,7 +157059,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120404,7 +157077,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120420,7 +157100,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120437,7 +157124,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120451,7 +157145,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120465,7 +157166,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120479,7 +157187,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120488,7 +157203,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120499,7 +157221,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120514,7 +157243,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120564,7 +157300,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120576,7 +157319,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120602,7 +157352,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120613,7 +157370,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120629,7 +157393,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120659,7 +157430,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120697,7 +157475,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120708,7 +157493,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120724,7 +157516,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120762,7 +157561,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120773,7 +157579,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120789,7 +157602,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120806,7 +157626,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120820,7 +157647,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120870,7 +157704,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120882,7 +157723,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120908,7 +157756,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120919,7 +157774,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120935,7 +157797,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120952,7 +157821,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120974,7 +157850,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -120988,7 +157871,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121000,7 +157890,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121013,7 +157910,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121037,7 +157941,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121048,7 +157959,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121064,7 +157982,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121096,7 +158021,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121105,7 +158037,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121138,7 +158077,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121164,7 +158110,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121175,7 +158128,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121191,7 +158151,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121208,7 +158175,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121232,7 +158206,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121243,7 +158224,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121259,7 +158247,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121276,7 +158271,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121285,7 +158287,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121296,7 +158305,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121330,7 +158346,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121339,7 +158362,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121350,7 +158380,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121379,7 +158416,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121390,7 +158434,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121406,7 +158457,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121433,7 +158491,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121444,7 +158509,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121460,7 +158532,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121477,7 +158556,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121491,7 +158577,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121508,7 +158601,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121555,7 +158655,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121566,7 +158673,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121582,7 +158696,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121607,7 +158728,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121636,7 +158764,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121650,7 +158785,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121674,7 +158816,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121685,7 +158834,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121701,7 +158857,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121838,7 +159001,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121847,7 +159017,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121878,7 +159055,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121898,7 +159082,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121910,7 +159101,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121933,7 +159131,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121966,7 +159171,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -121986,7 +159198,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122000,7 +159219,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122018,7 +159244,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122041,7 +159274,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122052,7 +159292,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122068,7 +159315,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122095,7 +159349,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122106,7 +159367,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122122,7 +159390,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122155,7 +159430,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122166,7 +159448,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122182,7 +159471,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122196,7 +159492,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122212,7 +159515,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122229,7 +159539,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122253,7 +159570,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122264,7 +159588,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122280,7 +159611,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122294,7 +159632,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122344,7 +159689,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122356,7 +159708,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122371,7 +159730,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122384,7 +159750,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122398,7 +159771,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122448,7 +159828,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122460,7 +159847,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122486,7 +159880,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122497,7 +159898,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122513,7 +159921,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122543,7 +159958,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122554,7 +159976,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122570,7 +159999,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122599,7 +160035,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122610,7 +160053,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122626,7 +160076,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122640,7 +160097,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122652,7 +160116,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122702,7 +160173,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122714,7 +160192,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122740,7 +160225,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122751,7 +160243,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122767,7 +160266,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122793,7 +160299,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122806,7 +160319,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122820,7 +160340,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122834,7 +160361,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122846,7 +160380,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122896,7 +160437,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122908,7 +160456,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122934,7 +160489,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122945,7 +160507,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122961,7 +160530,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122975,7 +160551,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -122991,7 +160574,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123006,7 +160596,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123019,7 +160616,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123037,7 +160641,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123048,7 +160659,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123098,7 +160716,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123110,7 +160735,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123136,7 +160768,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123147,7 +160786,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123163,7 +160809,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123206,7 +160859,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123217,7 +160877,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123233,7 +160900,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123260,7 +160934,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123271,7 +160952,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123287,7 +160975,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123314,7 +161009,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123325,7 +161027,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123341,7 +161050,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123358,7 +161074,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123381,7 +161104,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123453,7 +161183,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123464,7 +161201,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123480,7 +161224,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123497,7 +161248,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123518,7 +161276,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123541,7 +161306,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123552,7 +161324,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123568,7 +161347,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123595,7 +161381,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123604,7 +161397,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123615,7 +161415,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123652,7 +161459,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123663,7 +161477,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123679,7 +161500,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123696,7 +161524,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123711,7 +161546,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123722,7 +161564,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123745,7 +161594,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123756,7 +161612,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123772,7 +161635,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123789,7 +161659,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123809,7 +161686,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123822,7 +161706,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123837,7 +161728,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123848,7 +161746,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123859,7 +161764,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123882,7 +161794,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123893,7 +161812,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123909,7 +161835,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123936,7 +161869,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123947,7 +161887,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123963,7 +161910,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -123990,7 +161944,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124001,7 +161962,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124017,7 +161985,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124033,7 +162008,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124047,7 +162029,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124059,7 +162048,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124070,7 +162066,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124120,7 +162123,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124132,7 +162142,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124158,7 +162175,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124169,7 +162193,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124185,7 +162216,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124247,7 +162285,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124268,7 +162313,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124291,7 +162343,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124302,7 +162361,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124318,7 +162384,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124335,7 +162408,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124349,7 +162429,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124363,7 +162450,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124377,7 +162471,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124386,7 +162487,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124397,7 +162505,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124412,7 +162527,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124462,7 +162584,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124474,7 +162603,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124500,7 +162636,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124511,7 +162654,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124527,7 +162677,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124557,7 +162714,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124595,7 +162759,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124606,7 +162777,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124622,7 +162800,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124660,7 +162845,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124671,7 +162863,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124687,7 +162886,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124704,7 +162910,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124718,7 +162931,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124768,7 +162988,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124780,7 +163007,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124806,7 +163040,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124817,7 +163058,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124833,7 +163081,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124850,7 +163105,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124872,7 +163134,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124886,7 +163155,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124898,7 +163174,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124911,7 +163194,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124935,7 +163225,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124946,7 +163243,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124962,7 +163266,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -124994,7 +163305,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125003,7 +163321,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125036,7 +163361,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125062,7 +163394,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125073,7 +163412,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125089,7 +163435,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125106,7 +163459,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125130,7 +163490,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125141,7 +163508,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125157,7 +163531,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125174,7 +163555,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125183,7 +163571,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125194,7 +163589,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125228,7 +163630,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125237,7 +163646,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125248,7 +163664,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125277,7 +163700,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125288,7 +163718,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125304,7 +163741,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125331,7 +163775,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125342,7 +163793,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125358,7 +163816,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125375,7 +163840,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125389,7 +163861,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125406,7 +163885,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125453,7 +163939,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125464,7 +163957,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125480,7 +163980,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125516,7 +164023,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125542,7 +164056,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125553,7 +164074,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125569,7 +164097,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125683,7 +164218,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125705,7 +164247,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125736,7 +164285,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125756,7 +164312,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125768,7 +164331,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125791,7 +164361,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125824,7 +164401,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125844,7 +164428,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125858,7 +164449,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125876,7 +164474,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125899,7 +164504,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125910,7 +164522,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125926,7 +164545,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125953,7 +164579,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125964,7 +164597,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -125980,7 +164620,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126013,7 +164660,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126024,7 +164678,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126040,7 +164701,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126054,7 +164722,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126070,7 +164745,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126087,7 +164769,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126111,7 +164800,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126122,7 +164818,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126138,7 +164841,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126152,7 +164862,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126202,7 +164919,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126214,7 +164938,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126229,7 +164960,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126242,7 +164980,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126256,7 +165001,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126306,7 +165058,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126318,7 +165077,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126344,7 +165110,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126355,7 +165128,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126371,7 +165151,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126401,7 +165188,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126412,7 +165206,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126428,7 +165229,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126457,7 +165265,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126468,7 +165283,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126484,7 +165306,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126498,7 +165327,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126510,7 +165346,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126560,7 +165403,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126572,7 +165422,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126598,7 +165455,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126609,7 +165473,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126625,7 +165496,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126651,7 +165529,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126664,7 +165549,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126678,7 +165570,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126692,7 +165591,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126704,7 +165610,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126754,7 +165667,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126766,7 +165686,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126792,7 +165719,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126803,7 +165737,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126819,7 +165760,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126833,7 +165781,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126849,7 +165804,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126864,7 +165826,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126877,7 +165846,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126895,7 +165871,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126906,7 +165889,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126956,7 +165946,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126968,7 +165965,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -126994,7 +165998,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127005,7 +166016,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127021,7 +166039,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127064,7 +166089,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127075,7 +166107,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127091,7 +166130,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127118,7 +166164,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127129,7 +166182,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127145,7 +166205,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127172,7 +166239,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127183,7 +166257,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127199,7 +166280,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127216,7 +166304,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127239,7 +166334,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127311,7 +166413,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127322,7 +166431,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127338,7 +166454,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127355,7 +166478,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127376,7 +166506,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127399,7 +166536,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127410,7 +166554,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127426,7 +166577,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127453,7 +166611,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127462,7 +166627,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127473,7 +166645,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127510,7 +166689,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127521,7 +166707,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127537,7 +166730,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127554,7 +166754,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127569,7 +166776,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127580,7 +166794,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127603,7 +166824,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127614,7 +166842,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127630,7 +166865,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127647,7 +166889,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127667,7 +166916,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127680,7 +166936,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127695,7 +166958,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127706,7 +166976,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127717,7 +166994,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127740,7 +167024,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127751,7 +167042,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127767,7 +167065,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127794,7 +167099,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127805,7 +167117,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127821,7 +167140,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127848,7 +167174,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127859,7 +167192,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127875,7 +167215,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127891,7 +167238,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127905,7 +167259,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127917,7 +167278,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127928,7 +167296,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127978,7 +167353,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -127990,7 +167372,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128016,7 +167405,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128027,7 +167423,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128043,7 +167446,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128105,7 +167515,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128126,7 +167543,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128149,7 +167573,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128160,7 +167591,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128176,7 +167614,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128193,7 +167638,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128207,7 +167659,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128221,7 +167680,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128235,7 +167701,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128244,7 +167717,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128255,7 +167735,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128270,7 +167757,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128320,7 +167814,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128332,7 +167833,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128358,7 +167866,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128369,7 +167884,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128385,7 +167907,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128415,7 +167944,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128453,7 +167989,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128464,7 +168007,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128480,7 +168030,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128518,7 +168075,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128529,7 +168093,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128545,7 +168116,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128562,7 +168140,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128576,7 +168161,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128626,7 +168218,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128638,7 +168237,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128664,7 +168270,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128675,7 +168288,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128691,7 +168311,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128708,7 +168335,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128730,7 +168364,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128744,7 +168385,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128756,7 +168404,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128769,7 +168424,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128793,7 +168455,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128804,7 +168473,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128820,7 +168496,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128852,7 +168535,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128861,7 +168551,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128894,7 +168591,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128920,7 +168624,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128931,7 +168642,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128947,7 +168665,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128964,7 +168689,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128988,7 +168720,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -128999,7 +168738,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129015,7 +168761,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129032,7 +168785,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129041,7 +168801,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129052,7 +168819,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129086,7 +168860,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129095,7 +168876,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129106,7 +168894,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129135,7 +168930,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129146,7 +168948,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129162,7 +168971,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129189,7 +169005,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129200,7 +169023,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129216,7 +169046,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129233,7 +169070,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129247,7 +169091,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129264,7 +169115,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129311,7 +169169,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129322,7 +169187,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129338,7 +169210,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129364,7 +169243,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129375,7 +169261,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129391,7 +169284,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129413,7 +169313,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129436,7 +169343,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129447,7 +169361,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" @@ -129463,7 +169384,14 @@ "type": "object", "properties": { "id": { - "type": "number" + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + } + ] }, "documentId": { "type": "string" diff --git a/src/index.ts b/src/index.ts index 7ca75e6..c68d531 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,13 +1,21 @@ import type { Core } from "@strapi/strapi"; export default { + /** * An asynchronous register function that runs before * your application is initialized. * * This gives you an opportunity to extend code. */ - register(/* { strapi }: { strapi: Core.Strapi } */) {}, + register( { strapi }: { strapi: Core.Strapi } ) { + strapi.server.use(async (ctx, next) => { + if (ctx.req?.socket) { + (ctx.req.socket as any).encrypted = true; + } + await next(); + }); + }, /** * An asynchronous bootstrap function that runs before diff --git a/tsconfig.json b/tsconfig.json index 936bb62..352c848 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,7 +14,8 @@ "noImplicitThis": true, "outDir": "dist", "rootDir": ".", - "sourceMap": true + "sourceMap": true, + "types": ["node", "react", "react-dom"] }, "include": [ // Include root files