Skip to main content

Frontend App Manifest

manifest.json identifies the app and controls how Corva runs it. The scaffolder creates this file from the values registered in Dev Center.

Generated example

{
"format": 1,
"license": {
"type": "MIT",
"url": "https://example.com/license"
},
"developer": {
"name": "Example Company",
"identifier": "example-company",
"authors": []
},
"application": {
"type": "ui",
"key": "example-company.operations-overview.ui",
"visibility": "private",
"name": "Operations Overview",
"description": "Monitor current operational data.",
"summary": "A dashboard app for current operations.",
"category": "analytics",
"website": "https://example.com/operations-overview",
"segments": ["drilling"],
"ui": {
"initial_size": {
"w": 4,
"h": 10
},
"multi_rig": false,
"full_screen_report": false,
"use_app_header_v3": true
}
},
"settings": {
"entrypoint": {
"file": "src/index.js",
"function": "handler"
},
"environment": {},
"runtime": "ui"
},
"datasets": {}
}

JSON does not support comments. Keep explanatory notes outside the file.

Identity and discovery

FieldPurposeChange carefully?
application.typeMust be ui for a frontend appDo not change
application.keyRegistered identifier used for packages and app instancesDo not change
application.nameCustomer-facing nameYes
application.descriptionFull app descriptionYes
application.summaryShort store and discovery summaryYes
application.categoryApp-store categoryCoordinate with the registered app
application.visibilityApp visibilityManage through the supported publishing flow

Segment

Use one operational segment for a focused customer experience:

"segments": ["drilling"]

or:

"segments": ["completion"]

Corva UI uses the segment to select the primary assets and header behavior. Drilling maps to a rig and well; completion maps to a frac fleet, pad, and wells.

UI fields

FieldPurpose
initial_size.wInitial dashboard width in a 12-column grid
initial_size.hInitial dashboard height in grid units
multi_rigRemoves normal single-asset assumptions; the app must load its own asset scope
full_screen_reportUses the full report page when exporting dashboard PDF output
use_app_header_v3Enables the current AppHeader implementation
multi_rig_on_chipless_dashboardApplies multi-rig behavior only on chipless dashboards

Keep use_app_header_v3 set to true for new apps.

Completion-only fields

FieldPurpose
completionAppTypeSelects the supported pad, frac, wireline, pumpdown, single-well, or multi-well modes
enableSimulFracInPadSelectAdds frac-fleet line selection when SimulFrac relationships are available
disableActiveWellsInPadSelectPrevents selection of wells that are not active

The default completionAppType in Corva UI is Frac Multi-Well Apps.

See Build a Completion UI App before changing these fields.

Entrypoint

The frontend entrypoint should remain:

{
"entrypoint": {
"file": "src/index.js",
"function": "handler"
},
"runtime": "ui"
}

The generated build and package flow relies on this shape.