OpenSea · Schema
DropStageResponse
A mint stage within a drop
NFTMarketplaceWeb3BlockchainTradingDigital Assets
Properties
| Name | Type | Description |
|---|---|---|
| uuid | string | Stage UUID |
| stage_type | string | Stage type |
| label | string | Stage label/name |
| price | string | Mint price per token in wei (decimal string) |
| price_currency_address | string | Currency contract address (e.g. 0x0000...0000 for native token) |
| start_time | string | Stage start time (ISO 8601) |
| end_time | string | Stage end time (ISO 8601) |
| max_per_wallet | string | Max tokens mintable per wallet in this stage |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://opensea.io/schemas/DropStageResponse",
"title": "DropStageResponse",
"type": "object",
"description": "A mint stage within a drop",
"properties": {
"uuid": {
"type": "string",
"description": "Stage UUID"
},
"stage_type": {
"type": "string",
"description": "Stage type",
"example": "public_sale"
},
"label": {
"type": "string",
"description": "Stage label/name"
},
"price": {
"type": "string",
"description": "Mint price per token in wei (decimal string)"
},
"price_currency_address": {
"type": "string",
"description": "Currency contract address (e.g. 0x0000...0000 for native token)"
},
"start_time": {
"type": "string",
"description": "Stage start time (ISO 8601)"
},
"end_time": {
"type": "string",
"description": "Stage end time (ISO 8601)"
},
"max_per_wallet": {
"type": "string",
"description": "Max tokens mintable per wallet in this stage"
}
},
"required": [
"end_time",
"max_per_wallet",
"price_currency_address",
"stage_type",
"start_time",
"uuid"
]
}