NotebookMetadata#

pydantic model mobu.models.business.notebookrunner.NotebookMetadata#

Notebook metadata that we care about.

Parameters:

data (Any)

Show JSON schema
{
   "title": "NotebookMetadata",
   "description": "Notebook metadata that we care about.",
   "type": "object",
   "properties": {
      "required_applications": {
         "default": [],
         "description": "The names of Phalanx applications that the platform is required to provide in order for the notebook to run correctly. Not all environments provide all applications.",
         "examples": [
            [
               "ssotap",
               "butler",
               "tap"
            ]
         ],
         "items": {
            "type": "string"
         },
         "title": "Required applications",
         "type": "array",
         "uniqueItems": true
      }
   }
}

Fields:
field required_applications: set[str] = {}#

The names of Phalanx applications that the platform is required to provide in order for the notebook to run correctly. Not all environments provide all applications.

This page was last modified on .