Files
periscope/taxonomy/switch.json
T
Siddharth Kothari 6672d2be57 Pinscope open-source core
Agentic schematic validation: datasheet extraction via Claude Console
Skills, netlist/BOM design graph, per-IC direct datasheet review with
page citations, capacitor derating, Next.js report UI.

Extracted from the Pinscope cloud codebase. Auth and billing live in the
private gateway repo behind stable seams (billing_hook.py, adapter files
listed in CLAUDE.md).
2026-07-16 21:29:45 -07:00

29 lines
932 B
JSON

{
"type": "switch",
"specs": [
{"name": "voltage_rating_v", "description": "Maximum rated voltage", "unit": "V"},
{"name": "current_rating_a", "description": "Maximum rated current", "unit": "A"}
],
"subtypes": {
"switch.tactile": {
"description": "Tactile push-button switch",
"extra_specs": [
{"name": "contact_configuration", "description": "Contact arrangement (e.g. SPST-NO, SPST-NC)"}
]
},
"switch.dip": {
"description": "DIP switch",
"extra_specs": [
{"name": "positions", "description": "Number of independent switch positions"},
{"name": "contact_configuration", "description": "Contact arrangement per position (e.g. SPST)"}
]
},
"switch.slide": {
"description": "Slide switch",
"extra_specs": [
{"name": "contact_configuration", "description": "Contact arrangement (e.g. SPDT, DPDT)"}
]
}
}
}