From b4e6f05e32d61a1f78652f18879a620ed3c0266f Mon Sep 17 00:00:00 2001 From: Ryan Spangler Date: Mon, 29 Jan 2024 02:48:18 -0800 Subject: [PATCH] schema type --- process_bigraph/composite.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/process_bigraph/composite.py b/process_bigraph/composite.py index f49f8c4..48b67d9 100644 --- a/process_bigraph/composite.py +++ b/process_bigraph/composite.py @@ -382,12 +382,11 @@ class Composite(Process): config_schema = { - # TODO: add schema type - 'composition': 'tree[any]', + 'composition': 'schema', 'state': 'tree[any]', 'schema': { - 'inputs': 'tree[any]', - 'outputs': 'tree[any]'}, + 'inputs': 'schema', + 'outputs': 'schema'}, 'bridge': { 'inputs': 'wires', 'outputs': 'wires'},