addedInput schema / properties / projectId / description
Added value: +"The project/schematic ID"
addedOutput schema / properties / error
Added value: +{
+ "type": "string"
+}
addedOutput schema / properties / nets / items / properties / canonical_net_name
Added value: +{
+ "type": "string"
+}
addedOutput schema / properties / nets / items / properties / imported_alias
Added value: +{
+ "type": "boolean"
+}
addedOutput schema / properties / nets / items / properties / net_kind
Added value: +{
+ "enum": [
+ "signal",
+ "power",
+ "ground",
+ "power-flag",
+ "unnamed"
+ ],
+ "type": "string"
+}
addedOutput schema / properties / nets / items / properties / normalization_rules
Added value: +{
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
addedOutput schema / properties / nets / items / properties / raw_net_name
Added value: +{
+ "type": "string"
+}
changedOutput schema / properties / nets / items / required
Previous value: -[
- "net_name",
- "node_count",
- "nodes"
-]New value: +[
+ "net_name",
+ "raw_net_name",
+ "canonical_net_name",
+ "net_kind",
+ "normalization_rules",
+ "imported_alias",
+ "node_count",
+ "nodes"
+]
addedOutput schema / properties / read_consistency
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "attempts": {
+ "exclusiveMinimum": 0,
+ "maximum": 9007199254740991,
+ "type": "integer"
+ },
+ "stable": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "stable",
+ "attempts"
+ ],
+ "type": "object"
+}