{ "schema":{ "$id": "lumerical_CMLC_port_schema.json", "$schema": "lumerical_CMLC_port_schema/schema#/", "type": "object", "properties": { "port_list": { "type": "object", "properties": { "connected_port_list": { "allOf": [ { "$ref": "#/sch_port_list" }, { "required": [ "ele_an_bot", "ele_an_top", "ele_cat_bot", "ele_cat_top", "opt_1", "opt_2", "th_bottom_1", "th_bottom_2", "th_top_1", "th_top_2" ] } ] }, "floating_port_list": { "$ref": "#/sch_port_list" } }, "required": [ "connected_port_list" ], "additionalproperties": false } }, "definitions": { "port": { "type": "object", "$id": "#/port", "properties": { "name": { "type": "string" }, "pos": { "type": "string" }, "loc": { "type": "number", "minimum": 0, "maximum": 1 }, "order": { "type": "integer" }, "port_type": { "type": "string", "enum": [ "optical", "electrical" ] } }, "required": [ "name", "pos", "loc", "order", "port_type" ] }, "sch_port_list": { "$id": "#/sch_port_list", "type": "object", "patternProperties": { "^.*$": { "$ref": "#/port" } }, "additionalproperties": false } } } }