7digital · Schema

CardRegistrationRequest

CardRegistrationRequest schema from 7digital API

MusicStreamingLicensingCatalogueB2BRoyalty ReportingPublic APIs

Properties

Name Type Description
cardNumber string
expiryMonth integer
expiryYear integer
cvv string
cardholderName string
View JSON Schema on GitHub

JSON Schema

api-card-registration-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/7digital/refs/heads/main/json-schema/api-card-registration-request-schema.json",
  "title": "CardRegistrationRequest",
  "description": "CardRegistrationRequest schema from 7digital API",
  "type": "object",
  "properties": {
    "cardNumber": {
      "type": "string",
      "example": "4242424242424242"
    },
    "expiryMonth": {
      "type": "integer",
      "example": 12
    },
    "expiryYear": {
      "type": "integer",
      "example": 2028
    },
    "cvv": {
      "type": "string",
      "example": "123"
    },
    "cardholderName": {
      "type": "string",
      "example": "Jane Smith"
    }
  },
  "required": [
    "cardNumber",
    "expiryMonth",
    "expiryYear",
    "cvv"
  ]
}