def _set_schema()

in src/stepfunctions/inputs/placeholders.py [0:0]


    def _set_schema(self, schema, path=[]):
        """
            Set the schema for a placeholder collection.
        """
        for k, v in schema.items():
            if isinstance(v, dict):
                self._set_schema(v, path + [k])
            else:
                current = self
                for node in path:
                    current = current.get(node, dict)
                temp = current.get(k, v)