-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdssp-api-v0.1.yaml
More file actions
3333 lines (3211 loc) · 111 KB
/
dssp-api-v0.1.yaml
File metadata and controls
3333 lines (3211 loc) · 111 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.1.0
info:
title: Document Sovereignty Protocol & Privacy (DSSP) API
version: "0.1"
description: |
Wire protocol specification for the Document Sovereignty Protocol & Privacy (DSSP).
DSP enables document owners to grant scoped, auditable, privacy-preserving access
to their documents for AI-powered processing -- without the documents ever leaving
the owner's infrastructure unprotected.
## Architecture
```
Consumer <--OAuth2/API Key--> Gateway <--mTLS--> Enclave (owner infra)
```
- **Consumer**: The organization that wants to process documents (e.g., an audit firm).
- **Gateway**: The DSP orchestration layer that mediates between consumers and owner infrastructure.
- **Enclave**: A Trusted Execution Environment on the owner's infrastructure where processing occurs.
## Protocol Layers
| Layer | Artifact | Purpose |
|-------|-------------|--------------------------------------------------|
| 0 | Storage | Abstract storage interface (S3, Azure Blob, etc) |
| 1 | Manifest | Describes available documents (no content) |
| 2 | Contract | Defines permissions, restrictions, attestation |
| 3 | Result | Structured extraction output with attestation |
| 4 | Audit | Immutable, tamper-evident event ledger |
## Identifier Format
All DSP identifiers follow the format `<type-prefix>-<hex>`:
- `mf-` for manifests
- `ct-` for contracts
- `ps-` for sessions
- `rs-` for results
- `ev-` for events
- `doc-` for documents
- `ag-` for agents
## Timestamps
All timestamps are ISO 8601 UTC with the `Z` suffix (e.g., `2026-02-27T14:30:00Z`).
## Hash Format
All cryptographic hashes use the object format `{"algorithm": "sha-256", "value": "<hex>"}`.
contact:
name: DSP Working Group
url: https://dssp.dev
license:
name: Apache 2.0
url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: https://{gateway_host}/v0.1
description: DSSP Gateway (consumer-facing)
variables:
gateway_host:
default: api.dssp.example.com
description: Gateway hostname
- url: https://{enclave_host}/v0.1
description: DSP Enclave endpoint (gateway-to-enclave, mTLS only)
variables:
enclave_host:
default: enclave.owner.internal
description: Enclave endpoint hostname
tags:
- name: Manifests
description: |
Document manifests describe what documents are available for processing
without containing any document content or PII. Manifests are created
by document owners and discovered by consumers.
- name: Contracts
description: |
Processing contracts define what a consumer (agent) is allowed to do with
documents, what attestation is required, and what privacy restrictions apply.
The document owner creates contracts; the consumer must comply with all terms.
- name: Sessions
description: |
Processing sessions represent an active processing job running inside an
attested enclave. Sessions are bound to a contract and produce results.
- name: Audit
description: |
Immutable, append-only audit events that record every operation in the DSP
lifecycle. Events form a Merkle chain where each event references the hash
of the previous event, making the ledger tamper-evident.
- name: Storage
description: |
Storage access operations. The gateway requests scoped, time-limited access
tokens on behalf of attested enclaves so they can read documents from
owner-controlled storage.
- name: Discovery
description: |
Service discovery and capability negotiation. Returns the DSP configuration
for this gateway including supported versions, capabilities, and auth methods.
security:
- ApiKeyAuth: []
- OAuth2: [dsp:read, dsp:write]
paths:
# ---------------------------------------------------------------------------
# Manifests
# ---------------------------------------------------------------------------
/manifests:
post:
operationId: createManifest
tags: [Manifests]
summary: Create a document manifest
description: |
Register a new document manifest describing documents available for processing.
The manifest MUST NOT contain document content or PII. It describes document
metadata (classification, sensitivity, format, hash) that consumers use to
understand what is available and negotiate processing contracts.
The caller must be the document owner or an authorized delegate.
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/ManifestCreate"
example:
dssp_version: "0.1"
owner:
org_id: org-acme-corp
jurisdiction: EU/NL
data_residency: eu-west-1
expires_at: "2026-04-15T23:59:59Z"
scope:
engagement_id: engagement-2026-q1-annual-audit
period:
from: "2025-01-01"
to: "2025-12-31"
tags:
- annual-audit-2025
- financial-statements
documents:
- document_id: doc-f47ac10b58cc4372
classification: financial/bank-statement
sensitivity: pii-high
format: application/pdf
page_count: 3
language: en
hash:
algorithm: sha-256
value: a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0a1b2
size_bytes: 245760
pii_fields_declared:
- account_number
- account_holder_name
- balance
- iban
allowed_operations:
- extract_text
- extract_tables
- extract_key_value
- classify_document
denied_operations:
- copy
- download
- thumbnail
- preview
responses:
"201":
description: Manifest created successfully.
headers:
Location:
description: URL of the created manifest.
schema:
type: string
format: uri
example: /v0.1/manifests/mf-8a3b2c1d4e5f6789
content:
application/json:
schema:
$ref: "#/components/schemas/Manifest"
"400":
$ref: "#/components/responses/BadRequest"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"409":
$ref: "#/components/responses/Conflict"
"429":
$ref: "#/components/responses/RateLimited"
"500":
$ref: "#/components/responses/InternalError"
get:
operationId: listManifests
tags: [Manifests]
summary: List manifests
description: |
Retrieve a paginated list of manifests visible to the caller. Owners see
their own manifests; consumers see manifests shared with them via contracts.
parameters:
- $ref: "#/components/parameters/LimitParam"
- $ref: "#/components/parameters/OffsetParam"
- $ref: "#/components/parameters/CursorParam"
- name: owner_org_id
in: query
description: Filter by owner organization ID.
schema:
type: string
pattern: "^org-[a-z0-9][a-z0-9-]{1,62}[a-z0-9]$"
example: org-acme-corp
- name: classification
in: query
description: Filter by document classification present in manifests.
schema:
type: string
example: financial/bank-statement
- name: sensitivity_max
in: query
description: Filter manifests containing documents up to this sensitivity level.
schema:
$ref: "#/components/schemas/SensitivityLevel"
- name: tag
in: query
description: Filter by scope tag. May be repeated for AND semantics.
schema:
type: string
style: form
explode: true
- name: created_after
in: query
description: Return manifests created after this timestamp.
schema:
type: string
format: date-time
- name: created_before
in: query
description: Return manifests created before this timestamp.
schema:
type: string
format: date-time
responses:
"200":
description: Paginated list of manifests.
content:
application/json:
schema:
$ref: "#/components/schemas/ManifestList"
"400":
$ref: "#/components/responses/BadRequest"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/RateLimited"
"500":
$ref: "#/components/responses/InternalError"
/manifests/{manifest_id}:
get:
operationId: getManifest
tags: [Manifests]
summary: Get a manifest by ID
description: |
Retrieve a single manifest by its identifier. The caller must be the
owner of the manifest or a consumer with a contract referencing it.
parameters:
- $ref: "#/components/parameters/ManifestIdParam"
responses:
"200":
description: Manifest details.
content:
application/json:
schema:
$ref: "#/components/schemas/Manifest"
example:
manifest_id: mf-8a3b2c1d4e5f6789
dssp_version: "0.1"
owner:
org_id: org-acme-corp
jurisdiction: EU/NL
data_residency: eu-west-1
created_at: "2026-02-15T10:30:00Z"
expires_at: "2026-04-15T23:59:59Z"
scope:
engagement_id: engagement-2026-q1-annual-audit
period:
from: "2025-01-01"
to: "2025-12-31"
tags:
- annual-audit-2025
- financial-statements
- bank-confirmations
documents: []
summary:
total_documents: 3
total_size_bytes: 737280
classifications:
financial/bank-statement: 2
financial/invoice: 1
sensitivity_levels:
pii-high: 2
pii-low: 1
formats:
application/pdf: 3
languages:
en: 2
nl: 1
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"404":
$ref: "#/components/responses/NotFound"
"429":
$ref: "#/components/responses/RateLimited"
"500":
$ref: "#/components/responses/InternalError"
# ---------------------------------------------------------------------------
# Contracts
# ---------------------------------------------------------------------------
/contracts:
post:
operationId: createContract
tags: [Contracts]
summary: Create a processing contract
description: |
Create a new processing contract that grants a consumer scoped access to
documents described by a manifest. The contract defines permitted operations,
PII redaction rules, attestation requirements, privacy budgets, and all
other restrictions.
Only the document owner (or authorized delegate) can create contracts.
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/ContractCreate"
example:
dssp_version: "0.1"
manifest_id: mf-8a3b2c1d4e5f6789
owner:
org_id: org-acme-corp
jurisdiction: EU/NL
data_residency: eu-west-1
consumer:
org_id: org-docuverify
agent_type: ml_structured
permissions:
operations:
- extract_text
- extract_tables
- extract_key_value
document_filter:
classifications:
- financial/bank-statement
sensitivity_max: pii-high
max_documents_per_session: 50
max_session_duration_seconds: 3600
valid_from: "2026-02-15T00:00:00Z"
valid_until: "2026-04-15T23:59:59Z"
restrictions:
network_policy:
egress: deny_all
storage_policy: memory_only
result_policy:
raw_content_allowed: false
pii_redaction_rules:
account_number: mask_last_4
account_holder_name: hash_sha256
balance: allow
result_scanning:
enabled: true
required_scanners:
- regex
- ner
scan_failure_action: block_result
attestation_requirements:
enclave_types:
- sev-snp
- sgx
must_include:
- agent_binary_hash
- input_document_hashes
- output_result_hash
- result_scan_verdict
responses:
"201":
description: Contract created successfully.
headers:
Location:
description: URL of the created contract.
schema:
type: string
format: uri
example: /v0.1/contracts/ct-9e8f7d6c5b4a3928
content:
application/json:
schema:
$ref: "#/components/schemas/Contract"
"400":
$ref: "#/components/responses/BadRequest"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"409":
$ref: "#/components/responses/Conflict"
"429":
$ref: "#/components/responses/RateLimited"
"500":
$ref: "#/components/responses/InternalError"
get:
operationId: listContracts
tags: [Contracts]
summary: List contracts
description: |
Retrieve a paginated list of contracts. Owners see contracts they created;
consumers see contracts granted to them.
parameters:
- $ref: "#/components/parameters/LimitParam"
- $ref: "#/components/parameters/OffsetParam"
- $ref: "#/components/parameters/CursorParam"
- name: manifest_id
in: query
description: Filter by manifest ID.
schema:
$ref: "#/components/schemas/Identifier"
- name: owner_org_id
in: query
description: Filter by owner organization ID.
schema:
type: string
pattern: "^org-[a-z0-9][a-z0-9-]{1,62}[a-z0-9]$"
- name: consumer_org_id
in: query
description: Filter by consumer organization ID.
schema:
type: string
pattern: "^org-[a-z0-9][a-z0-9-]{1,62}[a-z0-9]$"
- name: status
in: query
description: Filter by contract status.
schema:
type: string
enum: [active, suspended, revoked, expired]
- name: created_after
in: query
description: Return contracts created after this timestamp.
schema:
type: string
format: date-time
- name: created_before
in: query
description: Return contracts created before this timestamp.
schema:
type: string
format: date-time
responses:
"200":
description: Paginated list of contracts.
content:
application/json:
schema:
$ref: "#/components/schemas/ContractList"
"400":
$ref: "#/components/responses/BadRequest"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"429":
$ref: "#/components/responses/RateLimited"
"500":
$ref: "#/components/responses/InternalError"
/contracts/{contract_id}:
get:
operationId: getContract
tags: [Contracts]
summary: Get a contract by ID
description: |
Retrieve a single contract by its identifier. Both the owner and the
consumer named in the contract may access it.
parameters:
- $ref: "#/components/parameters/ContractIdParam"
responses:
"200":
description: Contract details.
content:
application/json:
schema:
$ref: "#/components/schemas/Contract"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"404":
$ref: "#/components/responses/NotFound"
"429":
$ref: "#/components/responses/RateLimited"
"500":
$ref: "#/components/responses/InternalError"
patch:
operationId: updateContract
tags: [Contracts]
summary: Update a contract (suspend or revoke)
description: |
Update the status of a contract. Supported transitions:
- `active` -> `suspended` (temporarily halt processing, sessions are paused)
- `suspended` -> `active` (resume processing)
- `active` -> `revoked` (permanently end the contract, no new sessions)
- `suspended` -> `revoked` (permanently end the contract)
Revocation is permanent and cannot be undone. Only the document owner
can modify contract status.
parameters:
- $ref: "#/components/parameters/ContractIdParam"
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/ContractUpdate"
examples:
suspend:
summary: Suspend a contract
value:
status: suspended
reason: Temporary hold pending security review
revoke:
summary: Revoke a contract
value:
status: revoked
reason: Engagement concluded, revoking all access
reactivate:
summary: Reactivate a suspended contract
value:
status: active
reason: Security review passed, resuming access
responses:
"200":
description: Contract updated successfully.
content:
application/json:
schema:
$ref: "#/components/schemas/Contract"
"400":
$ref: "#/components/responses/BadRequest"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"404":
$ref: "#/components/responses/NotFound"
"409":
$ref: "#/components/responses/Conflict"
"429":
$ref: "#/components/responses/RateLimited"
"500":
$ref: "#/components/responses/InternalError"
# ---------------------------------------------------------------------------
# Sessions
# ---------------------------------------------------------------------------
/sessions:
post:
operationId: createSession
tags: [Sessions]
summary: Start a processing session
description: |
Start a new processing session under an active contract. The consumer
must provide an initial attestation proving the agent is running inside
an approved enclave. The gateway validates the attestation against the
contract's requirements before granting a session.
The session is bound to a specific contract and set of document IDs.
The agent must send heartbeats (if required by the contract) and
complete the session with a result before the session TTL expires.
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/SessionCreate"
example:
contract_id: ct-9e8f7d6c5b4a3928
document_ids:
- doc-f47ac10b58cc4372
- doc-g58bd21c69dd5483
agent:
org_id: org-docuverify
agent_id: ag-dv-extractor-v4
agent_type: ml_structured
agent_version: "4.2.1"
agent_hash:
algorithm: sha-256
value: abc123def456789abc123def456789abc123def456789abc123def456789abcd
attestation:
enclave_type: sev-snp
measurement: "0x7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b"
agent_hash:
algorithm: sha-256
value: abc123def456789abc123def456789abc123def456789abc123def456789abcd
timestamp: "2026-02-27T14:25:00Z"
signed_by: acme-ca
signature: TWFueSBoYW5kcyBtYWtlIGxpZ2h0IHdvcmsu
platform_certificate_chain:
- LS0tQkVHSU4gQ0VSVElGSUNBVEUtLS0K...
responses:
"201":
description: Session started successfully.
headers:
Location:
description: URL of the created session.
schema:
type: string
format: uri
example: /v0.1/sessions/ps-1a2b3c4d5e6f7890
content:
application/json:
schema:
$ref: "#/components/schemas/Session"
example:
session_id: ps-1a2b3c4d5e6f7890
contract_id: ct-9e8f7d6c5b4a3928
status: active
started_at: "2026-02-27T14:25:00Z"
expires_at: "2026-02-27T15:25:00Z"
heartbeat_interval_seconds: 60
document_ids:
- doc-f47ac10b58cc4372
- doc-g58bd21c69dd5483
access_token:
token: "dsp_tok_a1b2c3d4..."
expires_at: "2026-02-27T15:25:00Z"
scope:
document_ids:
- doc-f47ac10b58cc4372
- doc-g58bd21c69dd5483
operations:
- extract_text
- extract_tables
- extract_key_value
"400":
$ref: "#/components/responses/BadRequest"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
description: |
Forbidden. The attestation may have failed verification, or the
contract does not permit this consumer, agent, or enclave type.
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
examples:
attestation_failed:
summary: Attestation verification failed
value:
error:
code: attestation_failed
message: "Enclave attestation verification failed: agent_hash does not match contract requirement"
details:
expected_hash: abc123def456789abc123def456789abc123def456789abc123def456789abcd
received_hash: fff000fff000fff000fff000fff000fff000fff000fff000fff000fff000ffff
contract_violation:
summary: Contract does not permit this action
value:
error:
code: contract_violation
message: "Contract ct-9e8f7d6c5b4a3928 is suspended"
"404":
$ref: "#/components/responses/NotFound"
"409":
description: |
Conflict. Maximum concurrent sessions for this contract may be reached.
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
example:
error:
code: conflict
message: "Maximum concurrent sessions (2) reached for contract ct-9e8f7d6c5b4a3928"
"429":
$ref: "#/components/responses/RateLimited"
"500":
$ref: "#/components/responses/InternalError"
/sessions/{session_id}:
get:
operationId: getSession
tags: [Sessions]
summary: Get session status
description: |
Retrieve the current status of a processing session including elapsed
time, heartbeat status, and document processing progress.
parameters:
- $ref: "#/components/parameters/SessionIdParam"
responses:
"200":
description: Session details.
content:
application/json:
schema:
$ref: "#/components/schemas/Session"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"404":
$ref: "#/components/responses/NotFound"
"429":
$ref: "#/components/responses/RateLimited"
"500":
$ref: "#/components/responses/InternalError"
/sessions/{session_id}/heartbeat:
post:
operationId: sessionHeartbeat
tags: [Sessions]
summary: Send attested heartbeat
description: |
Send a periodic attested heartbeat to prove the enclave is still running
and has not been tampered with. The heartbeat interval is defined in the
contract's `runtime_verification.periodic_heartbeat_seconds` field.
Missing heartbeats trigger session termination. The heartbeat includes
a fresh attestation token and optional progress information.
parameters:
- $ref: "#/components/parameters/SessionIdParam"
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/Heartbeat"
example:
attestation:
enclave_type: sev-snp
measurement: "0x7a8b9c0d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b"
agent_hash:
algorithm: sha-256
value: abc123def456789abc123def456789abc123def456789abc123def456789abcd
timestamp: "2026-02-27T14:26:00Z"
signed_by: acme-ca
signature: aGVhcnRiZWF0IGF0dGVzdGF0aW9u
progress:
documents_processed: 1
documents_total: 2
percent_complete: 50
metrics:
memory_used_bytes: 268435456
cpu_seconds: 12.5
responses:
"200":
description: Heartbeat acknowledged.
content:
application/json:
schema:
$ref: "#/components/schemas/HeartbeatAck"
example:
acknowledged: true
session_status: active
next_heartbeat_deadline: "2026-02-27T14:27:00Z"
remaining_seconds: 3540
"400":
$ref: "#/components/responses/BadRequest"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
description: |
Attestation in the heartbeat failed verification, or the session
has already been terminated.
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
example:
error:
code: attestation_failed
message: "Heartbeat attestation verification failed: measurement changed since session start"
"404":
$ref: "#/components/responses/NotFound"
"409":
description: Session is no longer active (expired, completed, or terminated).
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
example:
error:
code: session_expired
message: "Session ps-1a2b3c4d5e6f7890 has expired"
"429":
$ref: "#/components/responses/RateLimited"
"500":
$ref: "#/components/responses/InternalError"
/sessions/{session_id}/complete:
post:
operationId: completeSession
tags: [Sessions]
summary: Complete session and submit result
description: |
End the processing session and submit the result envelope. The result
must include the full attestation, extractions, PII report, and result
scan verdicts.
The gateway validates the result against the contract's requirements
before accepting it. If result scanning is required but was not performed,
or if the scan failed and the contract's `scan_failure_action` is
`block_result`, the result is rejected.
This endpoint also accepts the end-of-session attestation that proves the
enclave was not tampered with during processing.
parameters:
- $ref: "#/components/parameters/SessionIdParam"
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/SessionComplete"
responses:
"200":
description: Session completed and result accepted.
content:
application/json:
schema:
$ref: "#/components/schemas/SessionCompleteResponse"
example:
session_id: ps-1a2b3c4d5e6f7890
status: completed
result_id: rs-5c4b3a2f1e0d9c8b
result_accepted: true
completed_at: "2026-02-27T14:30:02Z"
duration_ms: 302000
"400":
description: |
Invalid result. The result envelope may be malformed, missing required
fields, or violating contract constraints (e.g., result too large).
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
examples:
invalid_result:
summary: Invalid result envelope
value:
error:
code: invalid_request
message: "Result envelope validation failed: missing required field 'result_scan'"
scan_failed:
summary: Result scan failed
value:
error:
code: scan_failed
message: "Result scan failed: NER scanner detected 3 unredacted PII entities"
details:
scanner: presidio-v2.1
findings_count: 3
budget_exceeded:
summary: Privacy budget exceeded
value:
error:
code: budget_exceeded
message: "Privacy budget exceeded for contract ct-9e8f7d6c5b4a3928: epsilon 8.2 > max 5.0"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"404":
$ref: "#/components/responses/NotFound"
"409":
description: Session is no longer active.
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
example:
error:
code: session_expired
message: "Session ps-1a2b3c4d5e6f7890 has expired"
"429":
$ref: "#/components/responses/RateLimited"
"500":
$ref: "#/components/responses/InternalError"
/sessions/{session_id}/result:
get:
operationId: getSessionResult
tags: [Sessions]
summary: Retrieve session result
description: |
Retrieve the result envelope produced by a completed session.
The result is only available after the session has been completed
successfully. What the caller sees depends on the contract's
`gateway_visibility.results` setting:
- `full`: complete result envelope
- `metadata_only`: attestation + PII report, no extraction fields
- `verdict_only`: only pass/fail status
- `none`: 403 Forbidden (result never leaves owner infrastructure)
parameters:
- $ref: "#/components/parameters/SessionIdParam"
responses:
"200":
description: Result envelope.
content:
application/json:
schema:
$ref: "#/components/schemas/Result"
"401":
$ref: "#/components/responses/Unauthorized"
"403":
$ref: "#/components/responses/Forbidden"
"404":
description: Session not found or result not yet available.
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
example:
error:
code: not_found
message: "Result for session ps-1a2b3c4d5e6f7890 is not yet available"
"429":
$ref: "#/components/responses/RateLimited"
"500":
$ref: "#/components/responses/InternalError"
# ---------------------------------------------------------------------------
# Audit
# ---------------------------------------------------------------------------
/audit/events:
post:
operationId: appendAuditEvent
tags: [Audit]
summary: Append an audit event
description: |
Append a new event to the audit ledger. Events form a Merkle chain --
each event references the hash of the previous event. The gateway
validates chain integrity before accepting a new event.
This endpoint is typically called by the gateway itself, enclaves, or
owner-side infrastructure. It is not normally called directly by
consumers.
security:
- ApiKeyAuth: []
- OAuth2: [dsp:audit:write]
requestBody:
required: true
content:
application/json:
schema:
$ref: "#/components/schemas/AuditEventCreate"
example:
dssp_version: "0.1"
event_type: session.started
actor:
type: agent
org_id: org-docuverify
agent_id: ag-dv-extractor-v4
subject:
type: session
session_id: ps-1a2b3c4d5e6f7890
contract_id: ct-9e8f7d6c5b4a3928
action:
contract_id: ct-9e8f7d6c5b4a3928
contract_version: 1
reason: "Processing session started for bank statement extraction"
outcome:
status: success
responses:
"201":
description: Audit event appended to the ledger.
content:
application/json:
schema:
$ref: "#/components/schemas/AuditEvent"
"400":
description: |
Invalid event. Chain integrity violation (previous_event_hash mismatch),
invalid event_type, or missing required fields.
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
example:
error:
code: invalid_request
message: "Chain integrity violation: previous_event_hash does not match the latest event"
"401":