@agent-os-sdk/client 0.7.4 → 0.7.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1582,7 +1582,14 @@
1582
1582
  ],
1583
1583
  "responses": {
1584
1584
  "200": {
1585
- "description": "Returns the list of credentials."
1585
+ "description": "Returns the list of credentials.",
1586
+ "content": {
1587
+ "application/json": {
1588
+ "schema": {
1589
+ "$ref": "#/components/schemas/CredentialListResponse"
1590
+ }
1591
+ }
1592
+ }
1586
1593
  },
1587
1594
  "401": {
1588
1595
  "description": "Authentication required.",
@@ -1624,7 +1631,14 @@
1624
1631
  },
1625
1632
  "responses": {
1626
1633
  "201": {
1627
- "description": "Credential created successfully."
1634
+ "description": "Credential created successfully.",
1635
+ "content": {
1636
+ "application/json": {
1637
+ "schema": {
1638
+ "$ref": "#/components/schemas/CredentialCreatedResponse"
1639
+ }
1640
+ }
1641
+ }
1628
1642
  },
1629
1643
  "400": {
1630
1644
  "description": "Invalid request (missing TypeId or WorkspaceId).",
@@ -1669,7 +1683,14 @@
1669
1683
  ],
1670
1684
  "responses": {
1671
1685
  "200": {
1672
- "description": "Returns the credential."
1686
+ "description": "Returns the credential.",
1687
+ "content": {
1688
+ "application/json": {
1689
+ "schema": {
1690
+ "$ref": "#/components/schemas/CredentialDetailResponse"
1691
+ }
1692
+ }
1693
+ }
1673
1694
  },
1674
1695
  "404": {
1675
1696
  "description": "Credential not found.",
@@ -1722,7 +1743,14 @@
1722
1743
  },
1723
1744
  "responses": {
1724
1745
  "200": {
1725
- "description": "Credential updated successfully."
1746
+ "description": "Credential updated successfully.",
1747
+ "content": {
1748
+ "application/json": {
1749
+ "schema": {
1750
+ "$ref": "#/components/schemas/CredentialUpdatedResponse"
1751
+ }
1752
+ }
1753
+ }
1726
1754
  },
1727
1755
  "404": {
1728
1756
  "description": "Credential not found.",
@@ -1777,7 +1805,14 @@
1777
1805
  },
1778
1806
  "responses": {
1779
1807
  "200": {
1780
- "description": "Access granted successfully."
1808
+ "description": "Access granted successfully.",
1809
+ "content": {
1810
+ "application/json": {
1811
+ "schema": {
1812
+ "$ref": "#/components/schemas/CredentialAccessGrantedResponse"
1813
+ }
1814
+ }
1815
+ }
1781
1816
  },
1782
1817
  "404": {
1783
1818
  "description": "Credential not found.",
@@ -3842,7 +3877,14 @@
3842
3877
  ],
3843
3878
  "responses": {
3844
3879
  "200": {
3845
- "description": "OK"
3880
+ "description": "OK",
3881
+ "content": {
3882
+ "application/json": {
3883
+ "schema": {
3884
+ "$ref": "#/components/schemas/MemberListResponse"
3885
+ }
3886
+ }
3887
+ }
3846
3888
  }
3847
3889
  }
3848
3890
  }
@@ -3866,7 +3908,24 @@
3866
3908
  ],
3867
3909
  "responses": {
3868
3910
  "200": {
3869
- "description": "OK"
3911
+ "description": "OK",
3912
+ "content": {
3913
+ "application/json": {
3914
+ "schema": {
3915
+ "$ref": "#/components/schemas/MemberDetailResponse"
3916
+ }
3917
+ }
3918
+ }
3919
+ },
3920
+ "404": {
3921
+ "description": "Not Found",
3922
+ "content": {
3923
+ "application/json": {
3924
+ "schema": {
3925
+ "$ref": "#/components/schemas/ProblemDetails"
3926
+ }
3927
+ }
3928
+ }
3870
3929
  }
3871
3930
  }
3872
3931
  },
@@ -3907,7 +3966,24 @@
3907
3966
  },
3908
3967
  "responses": {
3909
3968
  "200": {
3910
- "description": "OK"
3969
+ "description": "OK",
3970
+ "content": {
3971
+ "application/json": {
3972
+ "schema": {
3973
+ "$ref": "#/components/schemas/MemberDetailResponse"
3974
+ }
3975
+ }
3976
+ }
3977
+ },
3978
+ "404": {
3979
+ "description": "Not Found",
3980
+ "content": {
3981
+ "application/json": {
3982
+ "schema": {
3983
+ "$ref": "#/components/schemas/ProblemDetails"
3984
+ }
3985
+ }
3986
+ }
3911
3987
  }
3912
3988
  }
3913
3989
  },
@@ -3928,8 +4004,18 @@
3928
4004
  }
3929
4005
  ],
3930
4006
  "responses": {
3931
- "200": {
3932
- "description": "OK"
4007
+ "204": {
4008
+ "description": "No Content"
4009
+ },
4010
+ "404": {
4011
+ "description": "Not Found",
4012
+ "content": {
4013
+ "application/json": {
4014
+ "schema": {
4015
+ "$ref": "#/components/schemas/ProblemDetails"
4016
+ }
4017
+ }
4018
+ }
3933
4019
  }
3934
4020
  }
3935
4021
  }
@@ -3960,8 +4046,45 @@
3960
4046
  }
3961
4047
  },
3962
4048
  "responses": {
3963
- "200": {
3964
- "description": "OK"
4049
+ "201": {
4050
+ "description": "Created",
4051
+ "content": {
4052
+ "application/json": {
4053
+ "schema": {
4054
+ "$ref": "#/components/schemas/MemberDetailResponse"
4055
+ }
4056
+ }
4057
+ }
4058
+ },
4059
+ "400": {
4060
+ "description": "Bad Request",
4061
+ "content": {
4062
+ "application/json": {
4063
+ "schema": {
4064
+ "$ref": "#/components/schemas/ProblemDetails"
4065
+ }
4066
+ }
4067
+ }
4068
+ },
4069
+ "404": {
4070
+ "description": "Not Found",
4071
+ "content": {
4072
+ "application/json": {
4073
+ "schema": {
4074
+ "$ref": "#/components/schemas/ProblemDetails"
4075
+ }
4076
+ }
4077
+ }
4078
+ },
4079
+ "409": {
4080
+ "description": "Conflict",
4081
+ "content": {
4082
+ "application/json": {
4083
+ "schema": {
4084
+ "$ref": "#/components/schemas/ProblemDetails"
4085
+ }
4086
+ }
4087
+ }
3965
4088
  }
3966
4089
  }
3967
4090
  }
@@ -3974,7 +4097,14 @@
3974
4097
  "summary": "List all roles in the current tenant.",
3975
4098
  "responses": {
3976
4099
  "200": {
3977
- "description": "OK"
4100
+ "description": "OK",
4101
+ "content": {
4102
+ "application/json": {
4103
+ "schema": {
4104
+ "$ref": "#/components/schemas/TenantRoleListResponse"
4105
+ }
4106
+ }
4107
+ }
3978
4108
  }
3979
4109
  }
3980
4110
  }
@@ -5623,7 +5753,14 @@
5623
5753
  ],
5624
5754
  "responses": {
5625
5755
  "200": {
5626
- "description": "OK"
5756
+ "description": "OK",
5757
+ "content": {
5758
+ "application/json": {
5759
+ "schema": {
5760
+ "$ref": "#/components/schemas/TenantListResponse"
5761
+ }
5762
+ }
5763
+ }
5627
5764
  }
5628
5765
  }
5629
5766
  },
@@ -5651,8 +5788,15 @@
5651
5788
  }
5652
5789
  },
5653
5790
  "responses": {
5654
- "200": {
5655
- "description": "OK"
5791
+ "201": {
5792
+ "description": "Created",
5793
+ "content": {
5794
+ "application/json": {
5795
+ "schema": {
5796
+ "$ref": "#/components/schemas/TenantResponse"
5797
+ }
5798
+ }
5799
+ }
5656
5800
  }
5657
5801
  }
5658
5802
  }
@@ -5675,7 +5819,24 @@
5675
5819
  ],
5676
5820
  "responses": {
5677
5821
  "200": {
5678
- "description": "OK"
5822
+ "description": "OK",
5823
+ "content": {
5824
+ "application/json": {
5825
+ "schema": {
5826
+ "$ref": "#/components/schemas/TenantResponse"
5827
+ }
5828
+ }
5829
+ }
5830
+ },
5831
+ "404": {
5832
+ "description": "Not Found",
5833
+ "content": {
5834
+ "application/json": {
5835
+ "schema": {
5836
+ "$ref": "#/components/schemas/ProblemDetails"
5837
+ }
5838
+ }
5839
+ }
5679
5840
  }
5680
5841
  }
5681
5842
  },
@@ -5715,7 +5876,24 @@
5715
5876
  },
5716
5877
  "responses": {
5717
5878
  "200": {
5718
- "description": "OK"
5879
+ "description": "OK",
5880
+ "content": {
5881
+ "application/json": {
5882
+ "schema": {
5883
+ "$ref": "#/components/schemas/TenantResponse"
5884
+ }
5885
+ }
5886
+ }
5887
+ },
5888
+ "404": {
5889
+ "description": "Not Found",
5890
+ "content": {
5891
+ "application/json": {
5892
+ "schema": {
5893
+ "$ref": "#/components/schemas/ProblemDetails"
5894
+ }
5895
+ }
5896
+ }
5719
5897
  }
5720
5898
  }
5721
5899
  },
@@ -5735,8 +5913,18 @@
5735
5913
  }
5736
5914
  ],
5737
5915
  "responses": {
5738
- "200": {
5739
- "description": "OK"
5916
+ "204": {
5917
+ "description": "No Content"
5918
+ },
5919
+ "404": {
5920
+ "description": "Not Found",
5921
+ "content": {
5922
+ "application/json": {
5923
+ "schema": {
5924
+ "$ref": "#/components/schemas/ProblemDetails"
5925
+ }
5926
+ }
5927
+ }
5740
5928
  }
5741
5929
  }
5742
5930
  }
@@ -7496,7 +7684,14 @@
7496
7684
  ],
7497
7685
  "responses": {
7498
7686
  "200": {
7499
- "description": "OK"
7687
+ "description": "OK",
7688
+ "content": {
7689
+ "application/json": {
7690
+ "schema": {
7691
+ "$ref": "#/components/schemas/WorkspaceListResponse"
7692
+ }
7693
+ }
7694
+ }
7500
7695
  }
7501
7696
  }
7502
7697
  },
@@ -7524,8 +7719,15 @@
7524
7719
  }
7525
7720
  },
7526
7721
  "responses": {
7527
- "200": {
7528
- "description": "OK"
7722
+ "201": {
7723
+ "description": "Created",
7724
+ "content": {
7725
+ "application/json": {
7726
+ "schema": {
7727
+ "$ref": "#/components/schemas/WorkspaceResponse"
7728
+ }
7729
+ }
7730
+ }
7529
7731
  }
7530
7732
  }
7531
7733
  }
@@ -7548,7 +7750,24 @@
7548
7750
  ],
7549
7751
  "responses": {
7550
7752
  "200": {
7551
- "description": "OK"
7753
+ "description": "OK",
7754
+ "content": {
7755
+ "application/json": {
7756
+ "schema": {
7757
+ "$ref": "#/components/schemas/WorkspaceResponse"
7758
+ }
7759
+ }
7760
+ }
7761
+ },
7762
+ "404": {
7763
+ "description": "Not Found",
7764
+ "content": {
7765
+ "application/json": {
7766
+ "schema": {
7767
+ "$ref": "#/components/schemas/ProblemDetails"
7768
+ }
7769
+ }
7770
+ }
7552
7771
  }
7553
7772
  }
7554
7773
  },
@@ -7588,28 +7807,55 @@
7588
7807
  },
7589
7808
  "responses": {
7590
7809
  "200": {
7591
- "description": "OK"
7592
- }
7593
- }
7594
- },
7595
- "delete": {
7596
- "tags": [
7597
- "Workspaces"
7598
- ],
7599
- "parameters": [
7600
- {
7601
- "name": "id",
7602
- "in": "path",
7603
- "required": true,
7604
- "schema": {
7605
- "type": "string",
7606
- "format": "uuid"
7810
+ "description": "OK",
7811
+ "content": {
7812
+ "application/json": {
7813
+ "schema": {
7814
+ "$ref": "#/components/schemas/WorkspaceResponse"
7815
+ }
7816
+ }
7817
+ }
7818
+ },
7819
+ "404": {
7820
+ "description": "Not Found",
7821
+ "content": {
7822
+ "application/json": {
7823
+ "schema": {
7824
+ "$ref": "#/components/schemas/ProblemDetails"
7825
+ }
7826
+ }
7827
+ }
7828
+ }
7829
+ }
7830
+ },
7831
+ "delete": {
7832
+ "tags": [
7833
+ "Workspaces"
7834
+ ],
7835
+ "parameters": [
7836
+ {
7837
+ "name": "id",
7838
+ "in": "path",
7839
+ "required": true,
7840
+ "schema": {
7841
+ "type": "string",
7842
+ "format": "uuid"
7607
7843
  }
7608
7844
  }
7609
7845
  ],
7610
7846
  "responses": {
7611
- "200": {
7612
- "description": "OK"
7847
+ "204": {
7848
+ "description": "No Content"
7849
+ },
7850
+ "404": {
7851
+ "description": "Not Found",
7852
+ "content": {
7853
+ "application/json": {
7854
+ "schema": {
7855
+ "$ref": "#/components/schemas/ProblemDetails"
7856
+ }
7857
+ }
7858
+ }
7613
7859
  }
7614
7860
  }
7615
7861
  }
@@ -8829,6 +9075,189 @@
8829
9075
  },
8830
9076
  "additionalProperties": false
8831
9077
  },
9078
+ "CredentialAccessGrantedResponse": {
9079
+ "type": "object",
9080
+ "properties": {
9081
+ "id": {
9082
+ "type": "string",
9083
+ "format": "uuid"
9084
+ },
9085
+ "status": {
9086
+ "type": "string",
9087
+ "nullable": true
9088
+ }
9089
+ },
9090
+ "additionalProperties": false,
9091
+ "description": "Response after granting access."
9092
+ },
9093
+ "CredentialCreatedResponse": {
9094
+ "type": "object",
9095
+ "properties": {
9096
+ "id": {
9097
+ "type": "string",
9098
+ "format": "uuid"
9099
+ },
9100
+ "name": {
9101
+ "type": "string",
9102
+ "nullable": true
9103
+ },
9104
+ "scope": {
9105
+ "type": "string",
9106
+ "nullable": true
9107
+ },
9108
+ "tenant_id": {
9109
+ "type": "string",
9110
+ "format": "uuid"
9111
+ },
9112
+ "workspace_id": {
9113
+ "type": "string",
9114
+ "format": "uuid",
9115
+ "nullable": true
9116
+ },
9117
+ "status": {
9118
+ "type": "string",
9119
+ "nullable": true
9120
+ },
9121
+ "created_at": {
9122
+ "type": "string",
9123
+ "format": "date-time"
9124
+ }
9125
+ },
9126
+ "additionalProperties": false,
9127
+ "description": "Response after creating a credential."
9128
+ },
9129
+ "CredentialDetailResponse": {
9130
+ "type": "object",
9131
+ "properties": {
9132
+ "id": {
9133
+ "type": "string",
9134
+ "format": "uuid"
9135
+ },
9136
+ "name": {
9137
+ "type": "string",
9138
+ "nullable": true
9139
+ },
9140
+ "scope": {
9141
+ "type": "string",
9142
+ "nullable": true
9143
+ },
9144
+ "sharing_mode": {
9145
+ "type": "string",
9146
+ "nullable": true
9147
+ },
9148
+ "tenant_id": {
9149
+ "type": "string",
9150
+ "format": "uuid"
9151
+ },
9152
+ "workspace_id": {
9153
+ "type": "string",
9154
+ "format": "uuid",
9155
+ "nullable": true
9156
+ },
9157
+ "type_display_name": {
9158
+ "type": "string",
9159
+ "nullable": true
9160
+ },
9161
+ "type_key": {
9162
+ "type": "string",
9163
+ "nullable": true
9164
+ },
9165
+ "status": {
9166
+ "type": "string",
9167
+ "nullable": true
9168
+ },
9169
+ "created_at": {
9170
+ "type": "string",
9171
+ "format": "date-time"
9172
+ },
9173
+ "public_config": {
9174
+ "nullable": true
9175
+ }
9176
+ },
9177
+ "additionalProperties": false,
9178
+ "description": "Detailed credential response including config."
9179
+ },
9180
+ "CredentialListResponse": {
9181
+ "type": "object",
9182
+ "properties": {
9183
+ "items": {
9184
+ "type": "array",
9185
+ "items": {
9186
+ "$ref": "#/components/schemas/CredentialResponse"
9187
+ },
9188
+ "nullable": true
9189
+ },
9190
+ "total": {
9191
+ "type": "integer",
9192
+ "format": "int32"
9193
+ }
9194
+ },
9195
+ "additionalProperties": false,
9196
+ "description": "Paginated list of credentials."
9197
+ },
9198
+ "CredentialResponse": {
9199
+ "type": "object",
9200
+ "properties": {
9201
+ "id": {
9202
+ "type": "string",
9203
+ "format": "uuid"
9204
+ },
9205
+ "name": {
9206
+ "type": "string",
9207
+ "nullable": true
9208
+ },
9209
+ "scope": {
9210
+ "type": "string",
9211
+ "nullable": true
9212
+ },
9213
+ "sharing_mode": {
9214
+ "type": "string",
9215
+ "nullable": true
9216
+ },
9217
+ "tenant_id": {
9218
+ "type": "string",
9219
+ "format": "uuid"
9220
+ },
9221
+ "workspace_id": {
9222
+ "type": "string",
9223
+ "format": "uuid",
9224
+ "nullable": true
9225
+ },
9226
+ "type": {
9227
+ "type": "string",
9228
+ "nullable": true
9229
+ },
9230
+ "status": {
9231
+ "type": "string",
9232
+ "nullable": true
9233
+ },
9234
+ "created_at": {
9235
+ "type": "string",
9236
+ "format": "date-time"
9237
+ }
9238
+ },
9239
+ "additionalProperties": false,
9240
+ "description": "Credential metadata (without encrypted values)."
9241
+ },
9242
+ "CredentialUpdatedResponse": {
9243
+ "type": "object",
9244
+ "properties": {
9245
+ "id": {
9246
+ "type": "string",
9247
+ "format": "uuid"
9248
+ },
9249
+ "status": {
9250
+ "type": "string",
9251
+ "nullable": true
9252
+ },
9253
+ "sharing_mode": {
9254
+ "type": "string",
9255
+ "nullable": true
9256
+ }
9257
+ },
9258
+ "additionalProperties": false,
9259
+ "description": "Response after updating a credential."
9260
+ },
8832
9261
  "DatasetResponse": {
8833
9262
  "type": "object",
8834
9263
  "properties": {
@@ -9177,6 +9606,97 @@
9177
9606
  },
9178
9607
  "additionalProperties": false
9179
9608
  },
9609
+ "MemberDetailResponse": {
9610
+ "type": "object",
9611
+ "properties": {
9612
+ "id": {
9613
+ "type": "string",
9614
+ "format": "uuid"
9615
+ },
9616
+ "user_id": {
9617
+ "type": "string",
9618
+ "format": "uuid"
9619
+ },
9620
+ "tenant_id": {
9621
+ "type": "string",
9622
+ "format": "uuid"
9623
+ },
9624
+ "role_id": {
9625
+ "type": "string",
9626
+ "format": "uuid"
9627
+ },
9628
+ "role_name": {
9629
+ "type": "string",
9630
+ "nullable": true
9631
+ },
9632
+ "workspaces": {
9633
+ "type": "array",
9634
+ "items": {
9635
+ "$ref": "#/components/schemas/MemberWorkspaceAssignment"
9636
+ },
9637
+ "nullable": true
9638
+ },
9639
+ "created_at": {
9640
+ "type": "string",
9641
+ "format": "date-time"
9642
+ },
9643
+ "updated_at": {
9644
+ "type": "string",
9645
+ "format": "date-time"
9646
+ },
9647
+ "email": {
9648
+ "type": "string",
9649
+ "nullable": true
9650
+ },
9651
+ "display_name": {
9652
+ "type": "string",
9653
+ "nullable": true
9654
+ }
9655
+ },
9656
+ "additionalProperties": false
9657
+ },
9658
+ "MemberListResponse": {
9659
+ "type": "object",
9660
+ "properties": {
9661
+ "items": {
9662
+ "type": "array",
9663
+ "items": {
9664
+ "$ref": "#/components/schemas/MemberDetailResponse"
9665
+ },
9666
+ "nullable": true
9667
+ },
9668
+ "total": {
9669
+ "type": "integer",
9670
+ "format": "int32"
9671
+ },
9672
+ "offset": {
9673
+ "type": "integer",
9674
+ "format": "int32"
9675
+ },
9676
+ "limit": {
9677
+ "type": "integer",
9678
+ "format": "int32"
9679
+ },
9680
+ "has_more": {
9681
+ "type": "boolean"
9682
+ }
9683
+ },
9684
+ "additionalProperties": false
9685
+ },
9686
+ "MemberWorkspaceAssignment": {
9687
+ "type": "object",
9688
+ "properties": {
9689
+ "id": {
9690
+ "type": "string",
9691
+ "format": "uuid"
9692
+ },
9693
+ "name": {
9694
+ "type": "string",
9695
+ "nullable": true
9696
+ }
9697
+ },
9698
+ "additionalProperties": false
9699
+ },
9180
9700
  "NodeCatalogResponse": {
9181
9701
  "required": [
9182
9702
  "nodes",
@@ -10103,6 +10623,75 @@
10103
10623
  },
10104
10624
  "additionalProperties": false
10105
10625
  },
10626
+ "TenantListResponse": {
10627
+ "type": "object",
10628
+ "properties": {
10629
+ "items": {
10630
+ "type": "array",
10631
+ "items": {
10632
+ "$ref": "#/components/schemas/TenantResponse"
10633
+ },
10634
+ "nullable": true
10635
+ }
10636
+ },
10637
+ "additionalProperties": false
10638
+ },
10639
+ "TenantResponse": {
10640
+ "type": "object",
10641
+ "properties": {
10642
+ "id": {
10643
+ "type": "string",
10644
+ "format": "uuid"
10645
+ },
10646
+ "name": {
10647
+ "type": "string",
10648
+ "nullable": true
10649
+ },
10650
+ "slug": {
10651
+ "type": "string",
10652
+ "nullable": true
10653
+ },
10654
+ "created_at": {
10655
+ "type": "string",
10656
+ "format": "date-time"
10657
+ },
10658
+ "updated_at": {
10659
+ "type": "string",
10660
+ "format": "date-time"
10661
+ }
10662
+ },
10663
+ "additionalProperties": false
10664
+ },
10665
+ "TenantRoleListResponse": {
10666
+ "type": "object",
10667
+ "properties": {
10668
+ "items": {
10669
+ "type": "array",
10670
+ "items": {
10671
+ "$ref": "#/components/schemas/TenantRoleResponse"
10672
+ },
10673
+ "nullable": true
10674
+ }
10675
+ },
10676
+ "additionalProperties": false
10677
+ },
10678
+ "TenantRoleResponse": {
10679
+ "type": "object",
10680
+ "properties": {
10681
+ "id": {
10682
+ "type": "string",
10683
+ "format": "uuid"
10684
+ },
10685
+ "name": {
10686
+ "type": "string",
10687
+ "nullable": true
10688
+ },
10689
+ "is_system": {
10690
+ "type": "boolean"
10691
+ }
10692
+ },
10693
+ "additionalProperties": false
10694
+ },
10106
10695
  "TestTriggerRequest": {
10107
10696
  "type": "object",
10108
10697
  "properties": {
@@ -10865,6 +11454,49 @@
10865
11454
  }
10866
11455
  },
10867
11456
  "additionalProperties": false
11457
+ },
11458
+ "WorkspaceListResponse": {
11459
+ "type": "object",
11460
+ "properties": {
11461
+ "items": {
11462
+ "type": "array",
11463
+ "items": {
11464
+ "$ref": "#/components/schemas/WorkspaceResponse"
11465
+ },
11466
+ "nullable": true
11467
+ }
11468
+ },
11469
+ "additionalProperties": false
11470
+ },
11471
+ "WorkspaceResponse": {
11472
+ "type": "object",
11473
+ "properties": {
11474
+ "id": {
11475
+ "type": "string",
11476
+ "format": "uuid"
11477
+ },
11478
+ "tenant_id": {
11479
+ "type": "string",
11480
+ "format": "uuid"
11481
+ },
11482
+ "name": {
11483
+ "type": "string",
11484
+ "nullable": true
11485
+ },
11486
+ "slug": {
11487
+ "type": "string",
11488
+ "nullable": true
11489
+ },
11490
+ "created_at": {
11491
+ "type": "string",
11492
+ "format": "date-time"
11493
+ },
11494
+ "updated_at": {
11495
+ "type": "string",
11496
+ "format": "date-time"
11497
+ }
11498
+ },
11499
+ "additionalProperties": false
10868
11500
  }
10869
11501
  }
10870
11502
  },