nbprint.config.core.PapermillParameters¶
- pydantic model nbprint.config.core.PapermillParameters[source]¶
Bases:
ParametersPapermill parameters function implicitly as a dict
Show JSON schema
{ "title": "PapermillParameters", "description": "Papermill parameters function implicitly as a dict", "type": "object", "properties": { "tags": { "items": { "type": "string" }, "title": "Tags", "type": "array" }, "role": { "$ref": "#/$defs/Role", "default": "parameters" }, "ignore": { "default": true, "title": "Ignore", "type": "boolean" }, "css": { "anyOf": [ { "type": "string" }, { "format": "path", "type": "string" }, { "type": "null" } ], "default": "", "title": "Css" }, "esm": { "anyOf": [ { "type": "string" }, { "format": "path", "type": "string" }, { "type": "null" } ], "default": "", "title": "Esm" }, "classname": { "anyOf": [ { "type": "string" }, { "items": { "type": "string" }, "type": "array" }, { "type": "null" } ], "default": "", "title": "Classname" }, "attrs": { "anyOf": [ { "additionalProperties": { "type": "string" }, "type": "object" }, { "type": "null" } ], "title": "Attrs" }, "vars": { "additionalProperties": true, "title": "Vars", "type": "object" } }, "$defs": { "Role": { "enum": [ "undefined", "configuration", "context", "outputs", "parameters", "content", "page", "layout" ], "title": "Role", "type": "string" } } }
- field vars: dict[str, Any] [Optional]¶