-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrigetti-quantum-processor-schema.json
More file actions
61 lines (61 loc) · 2.19 KB
/
rigetti-quantum-processor-schema.json
File metadata and controls
61 lines (61 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/rigetti/main/json-schema/rigetti-quantum-processor-schema.json",
"title": "Rigetti Quantum Processor",
"description": "A Rigetti superconducting QPU exposed through Quantum Cloud Services. Includes identity, ISA reference, and lifecycle metadata.",
"type": "object",
"required": ["id", "name"],
"properties": {
"id": {
"type": "string",
"description": "Stable identifier for the quantum processor (e.g. 'Cepheus-1-108Q')."
},
"name": {
"type": "string",
"description": "Display name of the QPU."
},
"qubitCount": {
"type": "integer",
"description": "Number of physical qubits on the processor."
},
"topology": {
"type": "string",
"description": "Lattice topology family (e.g. square, octagonal, tunable-coupler)."
},
"technology": {
"type": "string",
"description": "Underlying qubit technology — superconducting transmon for Rigetti.",
"default": "superconducting transmon"
},
"fidelities": {
"type": "object",
"properties": {
"singleQubitGate": { "type": "number", "description": "Median 1Q gate fidelity (0-1)." },
"twoQubitGate": { "type": "number", "description": "Median 2Q (CZ) gate fidelity (0-1)." },
"readout": { "type": "number", "description": "Median readout fidelity (0-1)." }
}
},
"coherence": {
"type": "object",
"properties": {
"t1Microseconds": { "type": "number", "description": "Median T1 lifetime in microseconds." },
"t2Microseconds": { "type": "number", "description": "Median T2 lifetime in microseconds." }
}
},
"isaUrl": {
"type": "string",
"format": "uri",
"description": "Link to the Instruction Set Architecture document for this processor."
},
"status": {
"type": "string",
"enum": ["operational", "maintenance", "deprecated", "decommissioned"]
},
"deployedAt": {
"type": "string",
"format": "date-time",
"description": "When the QPU was deployed for QCS access."
}
},
"additionalProperties": true
}