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_services": {
         "default": [],
         "description": "The names of services that the platform is required to provide in order for the notebook to run correctly. Not all environments provide all services.",
         "examples": [
            [
               "tap",
               "ssotap",
               "butler"
            ]
         ],
         "items": {
            "type": "string"
         },
         "title": "Required services",
         "type": "array",
         "uniqueItems": true
      }
   }
}

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

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