OpenSea · Schema

SubscriptionInfoResponse

NFTMarketplaceWeb3BlockchainTradingDigital Assets

Properties

Name Type Description
expires_at string
is_renewable boolean
is_expired boolean
View JSON Schema on GitHub

JSON Schema

SubscriptionInfoResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://opensea.io/schemas/SubscriptionInfoResponse",
  "title": "SubscriptionInfoResponse",
  "type": "object",
  "properties": {
    "expires_at": {
      "type": "string",
      "format": "date-time"
    },
    "is_renewable": {
      "type": "boolean"
    },
    "is_expired": {
      "type": "boolean"
    }
  },
  "required": [
    "is_expired",
    "is_renewable"
  ]
}