Skip to main content

SCHEMA_FILES

Kind: Constant
Domain: Scene and artifacts
Canonical import: from cadflow.scene import SCHEMA_FILES

Signature

SCHEMA_FILES: dict = {'scene': 'schemas/scene-1.0.schema.json', 'entities': 'schemas/entities-1.0.schema.json', 'presentation': 'schemas/presentation-1.0.schema.json', 'connector...

Description

dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2)

Errors

The source docstring does not declare a narrower exception contract. Invalid types, values, ownership, paths, or backend state may still raise the corresponding public error.

Behavior and constraints

  • The contract below is generated from the current public runtime signature. Check domain notes for ownership and workflow constraints.

Import check

from cadflow.scene import SCHEMA_FILES

See also