aingle_cortex 0.1.0

Córtex API - REST/GraphQL/SPARQL interface for AIngle semantic graphs
Documentation
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
openapi: 3.1.0
info:
  title: AIngle Córtex API
  version: 1.0.0
  description: |
    External REST API for querying and interacting with AIngle semantic graphs.

    ## Features

    - **Triple Management**: CRUD operations for RDF triples
    - **Pattern Queries**: Flexible pattern matching queries
    - **SPARQL**: Full SPARQL 1.1 query support
    - **Proof System**: Zero-knowledge proof storage and verification
    - **Authentication**: JWT-based authentication with role-based access
    - **Rate Limiting**: Token bucket algorithm (100 req/min default)

    ## Rate Limiting

    All endpoints are rate limited to 100 requests per minute per IP address.
    Rate limit information is returned in response headers:
    - `X-RateLimit-Limit`: Maximum requests per minute
    - `X-RateLimit-Remaining`: Remaining requests in current window
    - `Retry-After`: Seconds to wait before retrying (on 429 errors)

    ## Authentication

    Protected endpoints require a JWT token in the Authorization header:
    ```
    Authorization: Bearer <token>
    ```

    Obtain a token via `POST /api/v1/auth/login`.

  contact:
    name: Apilium Technologies
    email: hello@apilium.com
    url: https://apilium.com
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html

servers:
  - url: http://localhost:8080
    description: Local development server
  - url: https://api.aingle.apilium.com
    description: Production server

tags:
  - name: Triples
    description: CRUD operations for RDF triples
  - name: Queries
    description: Pattern matching and search queries
  - name: Proofs
    description: Zero-knowledge proof storage and verification
  - name: SPARQL
    description: SPARQL query endpoint
  - name: Stats
    description: Graph statistics and health checks
  - name: Auth
    description: Authentication and authorization

paths:
  # === TRIPLES ===

  /api/v1/triples:
    post:
      tags: [Triples]
      summary: Create a new triple
      description: Add a new RDF triple to the graph
      operationId: createTriple
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TripleInput'
            examples:
              stringObject:
                summary: Triple with string object
                value:
                  subject: "ex:Alice"
                  predicate: "foaf:name"
                  object:
                    string: "Alice Smith"
              nodeObject:
                summary: Triple with node object
                value:
                  subject: "ex:Alice"
                  predicate: "foaf:knows"
                  object:
                    node: "ex:Bob"
      responses:
        '201':
          description: Triple created successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Triple'
        '400':
          $ref: '#/components/responses/BadRequest'
        '429':
          $ref: '#/components/responses/RateLimitExceeded'
        '500':
          $ref: '#/components/responses/InternalError'

    get:
      tags: [Triples]
      summary: List triples
      description: Retrieve triples with optional filters
      operationId: listTriples
      parameters:
        - name: subject
          in: query
          description: Filter by exact subject
          schema:
            type: string
          example: "ex:Alice"
        - name: predicate
          in: query
          description: Filter by exact predicate
          schema:
            type: string
          example: "foaf:knows"
        - name: subject_prefix
          in: query
          description: Filter by subject prefix
          schema:
            type: string
          example: "ex:"
        - name: limit
          in: query
          description: Maximum number of results
          schema:
            type: integer
            default: 100
            maximum: 1000
        - name: offset
          in: query
          description: Number of results to skip
          schema:
            type: integer
            default: 0
      responses:
        '200':
          description: List of triples
          content:
            application/json:
              schema:
                type: object
                properties:
                  triples:
                    type: array
                    items:
                      $ref: '#/components/schemas/Triple'
                  total:
                    type: integer
                  limit:
                    type: integer
                  offset:
                    type: integer
        '400':
          $ref: '#/components/responses/BadRequest'
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

  /api/v1/triples/{id}:
    get:
      tags: [Triples]
      summary: Get triple by hash
      description: Retrieve a specific triple by its hash identifier
      operationId: getTriple
      parameters:
        - name: id
          in: path
          required: true
          description: Triple hash (hex-encoded BLAKE3)
          schema:
            type: string
          example: "a3f5d8c9e7b2..."
      responses:
        '200':
          description: Triple found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Triple'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

    delete:
      tags: [Triples]
      summary: Delete triple
      description: Remove a triple from the graph
      operationId: deleteTriple
      parameters:
        - name: id
          in: path
          required: true
          description: Triple hash
          schema:
            type: string
      security:
        - bearerAuth: []
      responses:
        '204':
          description: Triple deleted successfully
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

  # === QUERIES ===

  /api/v1/query:
    post:
      tags: [Queries]
      summary: Pattern matching query
      description: Find triples matching a pattern (wildcards supported)
      operationId: queryPattern
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatternQuery'
            examples:
              findAllKnows:
                summary: Find all 'knows' relationships
                value:
                  predicate: "foaf:knows"
              findAliceTriples:
                summary: Find all triples about Alice
                value:
                  subject: "ex:Alice"
      responses:
        '200':
          description: Query results
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/QueryResult'
        '400':
          $ref: '#/components/responses/BadRequest'
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

  /api/v1/query/subjects:
    get:
      tags: [Queries]
      summary: List unique subjects
      description: Get all unique subject nodes in the graph
      operationId: listSubjects
      parameters:
        - name: prefix
          in: query
          description: Filter by prefix
          schema:
            type: string
      responses:
        '200':
          description: List of subjects
          content:
            application/json:
              schema:
                type: object
                properties:
                  subjects:
                    type: array
                    items:
                      type: string
                  total:
                    type: integer
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

  /api/v1/query/predicates:
    get:
      tags: [Queries]
      summary: List unique predicates
      description: Get all unique predicates in the graph
      operationId: listPredicates
      responses:
        '200':
          description: List of predicates
          content:
            application/json:
              schema:
                type: object
                properties:
                  predicates:
                    type: array
                    items:
                      type: string
                  total:
                    type: integer
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

  # === PROOFS ===

  /api/v1/proofs:
    post:
      tags: [Proofs]
      summary: Submit a proof
      description: Store a zero-knowledge proof
      operationId: submitProof
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProofSubmission'
      responses:
        '201':
          description: Proof stored successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProofResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

    get:
      tags: [Proofs]
      summary: List proofs
      description: Retrieve stored proofs with optional filters
      operationId: listProofs
      parameters:
        - name: proof_type
          in: query
          description: Filter by proof type
          schema:
            type: string
            enum: [plonk, groth16, bulletproofs, stark]
        - name: verified
          in: query
          description: Filter by verification status
          schema:
            type: boolean
        - name: limit
          in: query
          schema:
            type: integer
            default: 50
            maximum: 500
      responses:
        '200':
          description: List of proofs
          content:
            application/json:
              schema:
                type: object
                properties:
                  proofs:
                    type: array
                    items:
                      $ref: '#/components/schemas/ProofResponse'
                  total:
                    type: integer
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

  /api/v1/proofs/{id}:
    get:
      tags: [Proofs]
      summary: Get proof by ID
      description: Retrieve a specific proof
      operationId: getProof
      parameters:
        - name: id
          in: path
          required: true
          description: Proof ID (UUID)
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Proof found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProofResponse'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

    delete:
      tags: [Proofs]
      summary: Delete proof
      description: Remove a proof from storage
      operationId: deleteProof
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      security:
        - bearerAuth: []
      responses:
        '204':
          description: Proof deleted
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

  /api/v1/proofs/{id}/verify:
    get:
      tags: [Proofs]
      summary: Verify proof
      description: Verify a stored proof
      operationId: verifyProof
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Verification result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VerificationResult'
        '404':
          $ref: '#/components/responses/NotFound'
        '422':
          description: Verification failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

  /api/v1/proofs/batch:
    post:
      tags: [Proofs]
      summary: Submit multiple proofs
      description: Batch submission of proofs
      operationId: submitProofsBatch
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                proofs:
                  type: array
                  items:
                    $ref: '#/components/schemas/ProofSubmission'
      responses:
        '201':
          description: Proofs submitted
          content:
            application/json:
              schema:
                type: object
                properties:
                  submitted:
                    type: integer
                  proof_ids:
                    type: array
                    items:
                      type: string
                      format: uuid
        '400':
          $ref: '#/components/responses/BadRequest'
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

  /api/v1/proofs/stats:
    get:
      tags: [Proofs]
      summary: Proof statistics
      description: Get statistics about stored proofs
      operationId: getProofStats
      responses:
        '200':
          description: Proof statistics
          content:
            application/json:
              schema:
                type: object
                properties:
                  total_proofs:
                    type: integer
                  verified_proofs:
                    type: integer
                  by_type:
                    type: object
                    additionalProperties:
                      type: integer
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

  # === SPARQL ===

  /api/v1/sparql:
    post:
      tags: [SPARQL]
      summary: Execute SPARQL query
      description: Run a SPARQL 1.1 SELECT query
      operationId: executeSparql
      requestBody:
        required: true
        content:
          application/sparql-query:
            schema:
              type: string
            example: |
              PREFIX foaf: <http://xmlns.com/foaf/0.1/>
              SELECT ?person ?name
              WHERE {
                ?person foaf:name ?name .
              }
          application/json:
            schema:
              type: object
              properties:
                query:
                  type: string
            example:
              query: |
                PREFIX foaf: <http://xmlns.com/foaf/0.1/>
                SELECT ?person ?name
                WHERE {
                  ?person foaf:name ?name .
                }
      responses:
        '200':
          description: Query results
          content:
            application/sparql-results+json:
              schema:
                $ref: '#/components/schemas/SparqlResult'
        '400':
          $ref: '#/components/responses/BadRequest'
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

  # === STATS ===

  /api/v1/stats:
    get:
      tags: [Stats]
      summary: Graph statistics
      description: Get overall graph statistics
      operationId: getStats
      responses:
        '200':
          description: Statistics
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GraphStats'
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

  /api/v1/health:
    get:
      tags: [Stats]
      summary: Health check
      description: Check if the server is running
      operationId: healthCheck
      responses:
        '200':
          description: Server is healthy
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: "ok"
                  version:
                    type: string
                    example: "1.0.0"
                  uptime:
                    type: integer
                    description: Server uptime in seconds

  # === AUTH ===

  /api/v1/auth/login:
    post:
      tags: [Auth]
      summary: Login
      description: Authenticate and receive JWT token
      operationId: login
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required: [username, password]
              properties:
                username:
                  type: string
                password:
                  type: string
                  format: password
      responses:
        '200':
          description: Login successful
          content:
            application/json:
              schema:
                type: object
                properties:
                  token:
                    type: string
                    description: JWT token
                  expires_in:
                    type: integer
                    description: Token expiration in seconds
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

  /api/v1/auth/register:
    post:
      tags: [Auth]
      summary: Register new user
      description: Create a new user account
      operationId: register
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required: [username, password, email]
              properties:
                username:
                  type: string
                password:
                  type: string
                  format: password
                  minLength: 8
                email:
                  type: string
                  format: email
      responses:
        '201':
          description: User created
          content:
            application/json:
              schema:
                type: object
                properties:
                  user_id:
                    type: string
                  username:
                    type: string
        '400':
          $ref: '#/components/responses/BadRequest'
        '409':
          description: User already exists
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          $ref: '#/components/responses/RateLimitExceeded'

# === COMPONENTS ===

components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

  schemas:
    Triple:
      type: object
      required: [id, subject, predicate, object, created_at]
      properties:
        id:
          type: string
          description: BLAKE3 hash of triple (hex-encoded)
        subject:
          type: string
          description: Subject IRI
        predicate:
          type: string
          description: Predicate IRI
        object:
          oneOf:
            - $ref: '#/components/schemas/StringValue'
            - $ref: '#/components/schemas/IntegerValue'
            - $ref: '#/components/schemas/FloatValue'
            - $ref: '#/components/schemas/BooleanValue'
            - $ref: '#/components/schemas/NodeValue'
        created_at:
          type: string
          format: date-time

    TripleInput:
      type: object
      required: [subject, predicate, object]
      properties:
        subject:
          type: string
          description: Subject IRI
        predicate:
          type: string
          description: Predicate IRI
        object:
          type: object
          properties:
            string:
              type: string
            integer:
              type: integer
            float:
              type: number
            boolean:
              type: boolean
            node:
              type: string
              description: Node IRI

    StringValue:
      type: object
      properties:
        type:
          type: string
          enum: [string]
        value:
          type: string

    IntegerValue:
      type: object
      properties:
        type:
          type: string
          enum: [integer]
        value:
          type: integer

    FloatValue:
      type: object
      properties:
        type:
          type: string
          enum: [float]
        value:
          type: number

    BooleanValue:
      type: object
      properties:
        type:
          type: string
          enum: [boolean]
        value:
          type: boolean

    NodeValue:
      type: object
      properties:
        type:
          type: string
          enum: [node]
        iri:
          type: string

    PatternQuery:
      type: object
      properties:
        subject:
          type: string
          nullable: true
        predicate:
          type: string
          nullable: true
        object:
          type: object
          nullable: true
        limit:
          type: integer
          default: 100

    QueryResult:
      type: object
      properties:
        matches:
          type: array
          items:
            $ref: '#/components/schemas/Triple'
        total:
          type: integer

    ProofSubmission:
      type: object
      required: [proof_type, proof_data]
      properties:
        proof_type:
          type: string
          enum: [plonk, groth16, bulletproofs, stark]
        proof_data:
          type: string
          format: byte
          description: Base64-encoded proof bytes
        public_inputs:
          type: array
          items:
            type: string
        metadata:
          type: object
          additionalProperties: true

    ProofResponse:
      type: object
      properties:
        id:
          type: string
          format: uuid
        proof_type:
          type: string
        proof_data:
          type: string
        public_inputs:
          type: array
          items:
            type: string
        verified:
          type: boolean
        created_at:
          type: string
          format: date-time
        metadata:
          type: object

    VerificationResult:
      type: object
      properties:
        valid:
          type: boolean
        verified_at:
          type: string
          format: date-time
        execution_time_ms:
          type: integer

    SparqlResult:
      type: object
      properties:
        head:
          type: object
          properties:
            vars:
              type: array
              items:
                type: string
        results:
          type: object
          properties:
            bindings:
              type: array
              items:
                type: object
                additionalProperties:
                  type: object
                  properties:
                    type:
                      type: string
                    value:
                      type: string

    GraphStats:
      type: object
      properties:
        triple_count:
          type: integer
        subject_count:
          type: integer
        predicate_count:
          type: integer
        object_count:
          type: integer
        connected_clients:
          type: integer

    Error:
      type: object
      required: [error, code]
      properties:
        error:
          type: string
          description: Human-readable error message
        code:
          type: string
          description: Machine-readable error code
        details:
          type: string
          description: Additional error details

  responses:
    BadRequest:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: "Invalid input"
            code: "INVALID_INPUT"

    Unauthorized:
      description: Unauthorized - authentication required
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: "Authentication failed"
            code: "AUTH_ERROR"

    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: "Triple not found"
            code: "NOT_FOUND"

    RateLimitExceeded:
      description: Rate limit exceeded
      headers:
        X-RateLimit-Limit:
          schema:
            type: integer
          description: Request limit per minute
        X-RateLimit-Remaining:
          schema:
            type: integer
          description: Remaining requests
        Retry-After:
          schema:
            type: integer
          description: Seconds to wait before retry
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: "Rate limit exceeded. Retry after 30 seconds"
            code: "RATE_LIMIT_EXCEEDED"
            retry_after: 30

    InternalError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: "Internal error"
            code: "INTERNAL_ERROR"