{ "$schema": "https://json-schema.org/draft/2020-12/schema", "type": "object", "properties": { "schemaVersion": { "type": "number", "const": 1 }, "buildId": { "type": "string", "minLength": 1 }, "commitSha": { "type": "string", "minLength": 1 }, "releaseId": { "type": "string", "minLength": 1 }, "moduleInventoryHash": { "type": "string", "minLength": 1 }, "generatedAt": { "type": "string", "minLength": 1 }, "buildContext": { "type": "object", "properties": { "nodeVersion": { "type": "string", "minLength": 1 }, "packageManagerVersion": { "type": "string", "minLength": 1 }, "runnerImage": { "type": "string", "minLength": 1 }, "sourceDateEpoch": { "anyOf": [ { "type": "string", "minLength": 1 }, { "type": "null" } ] } }, "required": [ "nodeVersion", "packageManagerVersion", "runnerImage", "sourceDateEpoch" ], "additionalProperties": false }, "outputs": { "type": "object", "properties": { "directory": { "type": "string", "minLength": 1 }, "viteManifest": { "type": "string", "minLength": 1 }, "moduleInventory": { "type": "string", "minLength": 1 }, "routeChunks": { "type": "object", "propertyNames": { "type": "string", "minLength": 1 }, "additionalProperties": { "type": "string", "minLength": 1 } }, "runtimeConfigSchema": { "type": "string", "minLength": 1 } }, "required": [ "directory", "viteManifest", "moduleInventory", "routeChunks", "runtimeConfigSchema" ], "additionalProperties": false } }, "required": [ "schemaVersion", "buildId", "commitSha", "releaseId", "moduleInventoryHash", "generatedAt", "buildContext", "outputs" ], "additionalProperties": false }