mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-06-14 00:22:42 +08:00
17 lines
450 B
JSON
17 lines
450 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"description": "GET request that returns network target block times",
|
|
"title": "NetworkBlockTimesResponse",
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["mainnet", "testnet"],
|
|
"properties": {
|
|
"mainnet": {
|
|
"$ref": "../../entities/info/block-time.schema.json"
|
|
},
|
|
"testnet": {
|
|
"$ref": "../../entities/info/block-time.schema.json"
|
|
}
|
|
}
|
|
}
|