Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion openapi/schemas/asset.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Rapidata Asset API",
"description": "The API for the Rapidata Asset service",
"version": "2026.08.06.0842-3babd12"
"version": "2026.08.06.0853-187f48f"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion openapi/schemas/audience.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Rapidata Audience API",
"description": "The API for the Rapidata Audience service",
"version": "2026.08.06.0842-3babd12"
"version": "2026.08.06.0853-187f48f"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion openapi/schemas/campaign.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Rapidata Campaign API",
"description": "The API for the Rapidata Campaign service",
"version": "2026.08.06.0842-3babd12"
"version": "2026.08.06.0853-187f48f"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion openapi/schemas/dataset.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Rapidata Dataset API",
"description": "The API for the Rapidata Dataset service",
"version": "2026.08.06.0842-3babd12"
"version": "2026.08.06.0853-187f48f"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion openapi/schemas/flow.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Rapidata Flow API",
"description": "The API for the Rapidata Flow service",
"version": "2026.08.06.0842-3babd12"
"version": "2026.08.06.0853-187f48f"
},
"servers": [
{
Expand Down
3 changes: 2 additions & 1 deletion openapi/schemas/identity.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Rapidata Identity API",
"description": "The API for the Rapidata Identity service",
"version": "2026.08.06.0842-3babd12"
"version": "2026.08.06.0853-187f48f"
},
"servers": [
{
Expand Down Expand Up @@ -283,6 +283,7 @@
"Capabilities"
],
"summary": "Lists the capabilities granted to an organization.",
"description": "Readable by the organization's own members, so a client can light up the product surfaces its\n grants entitle it to; platform staff read any organization.",
"parameters": [
{
"name": "organizationId",
Expand Down
2 changes: 1 addition & 1 deletion openapi/schemas/leaderboard.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Rapidata Leaderboard API",
"description": "The API for the Rapidata Leaderboard service",
"version": "2026.08.06.0842-3babd12"
"version": "2026.08.06.0853-187f48f"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion openapi/schemas/order.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Rapidata Order API",
"description": "The API for the Rapidata Order service",
"version": "2026.08.06.0842-3babd12"
"version": "2026.08.06.0853-187f48f"
},
"servers": [
{
Expand Down
41 changes: 37 additions & 4 deletions openapi/schemas/payment.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Rapidata Payment API",
"description": "The API for the Rapidata Payment service",
"version": "2026.08.06.0842-3babd12"
"version": "2026.08.06.0853-187f48f"
},
"servers": [
{
Expand Down Expand Up @@ -3386,7 +3386,6 @@
"name",
"billingPeriodId",
"organizationId",
"amount",
"reason"
],
"type": "object",
Expand Down Expand Up @@ -3416,8 +3415,22 @@
},
"amount": {
"type": "number",
"description": "The charge amount. Positive for fees, negative for refunds.",
"format": "double"
"description": "The total charge amount, equivalent to a single unit priced at this value. Only\n honored when both Quantity and UnitPrice are omitted;\n never combine it with them.",
"format": "double",
"nullable": true,
"deprecated": true
},
"quantity": {
"type": "integer",
"description": "The number of units billed. The charge total is Quantity × UnitPrice, and the\n invoice line shows the unit breakdown.",
"format": "int32",
"nullable": true
},
"unitPrice": {
"type": "number",
"description": "The price per unit. Positive for fees, negative for refunds.",
"format": "double",
"nullable": true
},
"reason": {
"allOf": [
Expand Down Expand Up @@ -4808,6 +4821,8 @@
"id",
"name",
"amount",
"quantity",
"unitPrice",
"_t"
],
"properties": {
Expand All @@ -4830,6 +4845,14 @@
"comment": {
"type": "string",
"nullable": true
},
"quantity": {
"type": "integer",
"format": "int32"
},
"unitPrice": {
"type": "number",
"format": "double"
}
}
},
Expand Down Expand Up @@ -4868,6 +4891,8 @@
"id",
"name",
"amount",
"quantity",
"unitPrice",
"_t"
],
"properties": {
Expand All @@ -4890,6 +4915,14 @@
"comment": {
"type": "string",
"nullable": true
},
"quantity": {
"type": "integer",
"format": "int32"
},
"unitPrice": {
"type": "number",
"format": "double"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion openapi/schemas/pipeline.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Rapidata Pipeline API",
"description": "The API for the Rapidata Pipeline service",
"version": "2026.08.06.0842-3babd12"
"version": "2026.08.06.0853-187f48f"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion openapi/schemas/rapid.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Rapidata Rapid API",
"description": "The API for the Rapidata Rapid service",
"version": "2026.08.06.0842-3babd12"
"version": "2026.08.06.0853-187f48f"
},
"servers": [
{
Expand Down
37 changes: 32 additions & 5 deletions openapi/schemas/rapidata.filtered.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Rapidata Asset API",
"description": "The API for the Rapidata Asset service",
"version": "2026.08.06.0842-3babd12"
"version": "2026.08.06.0853-187f48f"
},
"servers": [
{
Expand Down Expand Up @@ -7180,6 +7180,7 @@
"Capabilities"
],
"summary": "Lists the capabilities granted to an organization.",
"description": "Readable by the organization's own members, so a client can light up the product surfaces its\n grants entitle it to; platform staff read any organization.",
"parameters": [
{
"name": "organizationId",
Expand Down Expand Up @@ -53995,7 +53996,6 @@
"name",
"billingPeriodId",
"organizationId",
"amount",
"reason"
],
"type": "object",
Expand Down Expand Up @@ -54023,10 +54023,17 @@
"description": "The email address of the member named by CustomerId.",
"nullable": true
},
"amount": {
"quantity": {
"type": "integer",
"description": "The number of units billed. The charge total is Quantity × UnitPrice, and the\n invoice line shows the unit breakdown.",
"format": "int32",
"nullable": true
},
"unitPrice": {
"type": "number",
"description": "The charge amount. Positive for fees, negative for refunds.",
"format": "double"
"description": "The price per unit. Positive for fees, negative for refunds.",
"format": "double",
"nullable": true
},
"reason": {
"allOf": [
Expand Down Expand Up @@ -55394,6 +55401,8 @@
"id",
"name",
"amount",
"quantity",
"unitPrice",
"_t"
],
"properties": {
Expand All @@ -55416,6 +55425,14 @@
"comment": {
"type": "string",
"nullable": true
},
"quantity": {
"type": "integer",
"format": "int32"
},
"unitPrice": {
"type": "number",
"format": "double"
}
}
},
Expand Down Expand Up @@ -55454,6 +55471,8 @@
"id",
"name",
"amount",
"quantity",
"unitPrice",
"_t"
],
"properties": {
Expand All @@ -55476,6 +55495,14 @@
"comment": {
"type": "string",
"nullable": true
},
"quantity": {
"type": "integer",
"format": "int32"
},
"unitPrice": {
"type": "number",
"format": "double"
}
}
},
Expand Down
42 changes: 38 additions & 4 deletions openapi/schemas/rapidata.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Rapidata Asset API",
"description": "The API for the Rapidata Asset service",
"version": "2026.08.06.0842-3babd12"
"version": "2026.08.06.0853-187f48f"
},
"servers": [
{
Expand Down Expand Up @@ -7230,6 +7230,7 @@
"Capabilities"
],
"summary": "Lists the capabilities granted to an organization.",
"description": "Readable by the organization's own members, so a client can light up the product surfaces its\n grants entitle it to; platform staff read any organization.",
"parameters": [
{
"name": "organizationId",
Expand Down Expand Up @@ -55962,7 +55963,6 @@
"name",
"billingPeriodId",
"organizationId",
"amount",
"reason"
],
"type": "object",
Expand Down Expand Up @@ -55992,8 +55992,22 @@
},
"amount": {
"type": "number",
"description": "The charge amount. Positive for fees, negative for refunds.",
"format": "double"
"description": "The total charge amount, equivalent to a single unit priced at this value. Only\n honored when both Quantity and UnitPrice are omitted;\n never combine it with them.",
"format": "double",
"nullable": true,
"deprecated": true
},
"quantity": {
"type": "integer",
"description": "The number of units billed. The charge total is Quantity × UnitPrice, and the\n invoice line shows the unit breakdown.",
"format": "int32",
"nullable": true
},
"unitPrice": {
"type": "number",
"description": "The price per unit. Positive for fees, negative for refunds.",
"format": "double",
"nullable": true
},
"reason": {
"allOf": [
Expand Down Expand Up @@ -57384,6 +57398,8 @@
"id",
"name",
"amount",
"quantity",
"unitPrice",
"_t"
],
"properties": {
Expand All @@ -57406,6 +57422,14 @@
"comment": {
"type": "string",
"nullable": true
},
"quantity": {
"type": "integer",
"format": "int32"
},
"unitPrice": {
"type": "number",
"format": "double"
}
}
},
Expand Down Expand Up @@ -57444,6 +57468,8 @@
"id",
"name",
"amount",
"quantity",
"unitPrice",
"_t"
],
"properties": {
Expand All @@ -57466,6 +57492,14 @@
"comment": {
"type": "string",
"nullable": true
},
"quantity": {
"type": "integer",
"format": "int32"
},
"unitPrice": {
"type": "number",
"format": "double"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion openapi/schemas/signal.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Rapidata Signal API",
"description": "The API for the Rapidata Signal service",
"version": "2026.08.06.0842-3babd12"
"version": "2026.08.06.0853-187f48f"
},
"servers": [
{
Expand Down
2 changes: 1 addition & 1 deletion openapi/schemas/translation.openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"info": {
"title": "Rapidata Translation API",
"description": "The API for the Rapidata Translation service",
"version": "2026.08.06.0842-3babd12"
"version": "2026.08.06.0853-187f48f"
},
"servers": [
{
Expand Down
Loading
Loading