changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "avgFundingAnnualizedPct": {
+ "description": "The same funding as a yearly percentage, comparable to any other yield.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "avgFundingRate": {
+ "description": "Percent per 8 hours. 0.0067 means 0.0067%, not 0.67%.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "coin": {
+ "type": "string"
+ },
+ "exchangeCount": {
+ "description": "How many major venues backed the numbers.",
+ "type": "number"
+ },
+ "fundingSpread": {
+ "description": "Highest minus lowest venue funding. A wide spread marks localised positioning.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "perExchange": {
+ "description": "Per-venue breakdown, from each venue's largest-open-interest perpetual.",
+ "items": {
+ "properties": {
+ "exchange": {
+ "type": "string"
+ },
+ "fundingRate": {
+ "description": "Percent per 8 hours.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "openInterestUsd": {
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "exchange"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "totalOpenInterestUsd": {
+ "description": "Summed across the major venues.",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "coin",
+ "perExchange",
+ "exchangeCount"
+ ],
+ "type": "object"
+}