Automated spec update (196220)

This commit is contained in:
Nelly (automation bot) 2026-03-12 22:37:25 +00:00
parent 7ab02fe227
commit 7cba79e03a
2 changed files with 76 additions and 0 deletions

View file

@ -34061,6 +34061,27 @@
} }
} }
}, },
"SKUIneligibilityReason": {
"type": "integer",
"oneOf": [
{
"title": "OTHER",
"description": "Other / catch-all",
"const": 0
},
{
"title": "OWNS_SKU_OR_BUNDLE_COMPONENT",
"description": "User already owns this SKU or one of its components",
"const": 1
},
{
"title": "PLATFORM_RESTRICTION",
"description": "User account is not on an eligible platform",
"const": 2
}
],
"format": "int32"
},
"ScheduledEventResponse": { "ScheduledEventResponse": {
"type": "object", "type": "object",
"properties": { "properties": {
@ -34451,6 +34472,23 @@
"properties": { "properties": {
"eligible": { "eligible": {
"type": "boolean" "type": "boolean"
},
"ineligible_reason": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/SKUIneligibilityReason"
}
]
},
"ineligible_reason_description": {
"type": [
"string",
"null"
],
"maxLength": 255
} }
}, },
"required": [ "required": [

View file

@ -34978,6 +34978,27 @@
} }
} }
}, },
"SKUIneligibilityReason": {
"type": "integer",
"oneOf": [
{
"title": "OTHER",
"description": "Other / catch-all",
"const": 0
},
{
"title": "OWNS_SKU_OR_BUNDLE_COMPONENT",
"description": "User already owns this SKU or one of its components",
"const": 1
},
{
"title": "PLATFORM_RESTRICTION",
"description": "User account is not on an eligible platform",
"const": 2
}
],
"format": "int32"
},
"ScheduledEventResponse": { "ScheduledEventResponse": {
"type": "object", "type": "object",
"properties": { "properties": {
@ -35757,6 +35778,23 @@
"properties": { "properties": {
"eligible": { "eligible": {
"type": "boolean" "type": "boolean"
},
"ineligible_reason": {
"oneOf": [
{
"type": "null"
},
{
"$ref": "#/components/schemas/SKUIneligibilityReason"
}
]
},
"ineligible_reason_description": {
"type": [
"string",
"null"
],
"maxLength": 255
} }
}, },
"required": [ "required": [