Skip to content

Commit

Permalink
Update api spec (#992)
Browse files Browse the repository at this point in the history
  • Loading branch information
zoo-github-actions-auth[bot] authored Oct 24, 2024
1 parent 2596c91 commit 0a2ea55
Showing 1 changed file with 68 additions and 1 deletion.
69 changes: 68 additions & 1 deletion spec.json
Original file line number Diff line number Diff line change
Expand Up @@ -8227,7 +8227,7 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/SubscriptionTierPrice"
"$ref": "#/components/schemas/EnterpriseSubscriptionTierPrice"
}
}
},
Expand Down Expand Up @@ -17999,6 +17999,73 @@
"pos"
]
},
"EnterpriseSubscriptionTierPrice": {
"description": "The price for an enterprise subscription.",
"oneOf": [
{
"description": "A flat price that we publicly list.",
"type": "object",
"properties": {
"interval": {
"description": "The interval the price is charged.",
"allOf": [
{
"$ref": "#/components/schemas/PlanInterval"
}
]
},
"price": {
"title": "double",
"description": "The price.",
"type": "number",
"format": "money-usd"
},
"type": {
"type": "string",
"enum": [
"flat"
]
}
},
"required": [
"interval",
"price",
"type"
]
},
{
"description": "A per user price that we publicly list.",
"type": "object",
"properties": {
"interval": {
"description": "The interval the price is charged.",
"allOf": [
{
"$ref": "#/components/schemas/PlanInterval"
}
]
},
"price": {
"title": "double",
"description": "The price.",
"type": "number",
"format": "money-usd"
},
"type": {
"type": "string",
"enum": [
"per_user"
]
}
},
"required": [
"interval",
"price",
"type"
]
}
]
},
"EntityCircularPattern": {
"description": "The response from the `EntityCircularPattern` command.",
"type": "object",
Expand Down

0 comments on commit 0a2ea55

Please sign in to comment.