bayesline.api.RawSettings#
- pydantic model bayesline.api.RawSettings#
Raw settings data structure.
Show JSON schema
{ "$defs": { "RawSettings": { "description": "Raw settings data structure.", "properties": { "model_type": { "title": "Model Type", "type": "string" }, "name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "title": "Name" }, "identifier": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "title": "Identifier" }, "exists": { "title": "Exists", "type": "boolean" }, "raw_json": { "additionalProperties": true, "title": "Raw Json", "type": "object" }, "references": { "items": { "$ref": "#/$defs/RawSettings" }, "title": "References", "type": "array" }, "extra": { "additionalProperties": true, "title": "Extra", "type": "object" } }, "required": [ "model_type", "name", "identifier", "exists", "raw_json", "references" ], "title": "RawSettings", "type": "object" } }, "$ref": "#/$defs/RawSettings" }
- Fields:
exists (bool)extra (dict[str, Any])identifier (int | None)model_type (str)name (str | None)raw_json (dict[str, Any])references (list[bayesline.api._src.registry.RawSettings])
- field model_type: str [Required]#
- field name: str | None [Required]#
- field identifier: int | None [Required]#
- field exists: bool [Required]#
- field raw_json: dict[str, Any] [Required]#
- field references: list[RawSettings] [Required]#
- field extra: dict[str, Any] [Optional]#