changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "classes": {
+ "description": "Per-class aggregates (whole-market snapshot only)",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "cheapest_rentable": {
+ "anyOf": [
+ {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "gpu_class": {
+ "type": "string"
+ },
+ "median_price_per_gpu_hour_usd": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "offers_observed": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "gpu_class",
+ "offers_observed",
+ "cheapest_rentable",
+ "median_price_per_gpu_hour_usd"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "generated_at": {
+ "description": "ISO-8601 snapshot generation timestamp (whole-market only)",
+ "type": "string"
+ },
+ "gpu": {
+ "description": "GPU class queried; null for whole-market snapshot",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "market": {
+ "description": "Market id, e.g. compute-spot (whole-market only)",
+ "type": "string"
+ },
+ "observation_type": {
+ "description": "ask = live asks, survey = aggregated survey",
+ "type": "string"
+ },
+ "observed_at": {
+ "description": "ISO-8601 observation timestamp",
+ "type": "string"
+ },
+ "offers": {
+ "description": "Per-offer asks; stable keys include usd_per_gpu_hr, provider, gpu, kind, observed_at",
+ "items": {
+ "additionalProperties": {},
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "offers_returned": {
+ "type": "number"
+ },
+ "provenance": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "additionalProperties": {},
+ "type": "object"
+ }
+ ],
+ "description": "Provenance: object for vast-ai, string for aggregated sources"
+ },
+ "source": {
+ "description": "Upstream source id (aggregated sources only)",
+ "type": "string"
+ },
+ "source_attribution": {
+ "description": "License/attribution (aggregated sources only)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "description": "Pricing mode queried (vast-ai only): ondemand, bid, reserved",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}