Amdocs · Schema

SubscriptionRequest

SubscriptionRequest schema from Amdocs API

TelecomBSSOSSBillingCustomer ManagementMVNO5GSaaS

Properties

Name Type Description
productId string
startDate string
addons array
View JSON Schema on GitHub

JSON Schema

connectx-subscription-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amdocs/refs/heads/main/json-schema/connectx-subscription-request-schema.json",
  "title": "SubscriptionRequest",
  "description": "SubscriptionRequest schema from Amdocs API",
  "type": "object",
  "properties": {
    "productId": {
      "type": "string"
    },
    "startDate": {
      "type": "string",
      "format": "date"
    },
    "addons": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "productId",
    "startDate"
  ]
}