|
15469 | 15469 | "items"
|
15470 | 15470 | ]
|
15471 | 15471 | },
|
| 15472 | + "ApiEndpoint": { |
| 15473 | + "description": "Types of API endpoints.", |
| 15474 | + "oneOf": [ |
| 15475 | + { |
| 15476 | + "description": "The modeling API.", |
| 15477 | + "type": "string", |
| 15478 | + "enum": [ |
| 15479 | + "modeling" |
| 15480 | + ] |
| 15481 | + }, |
| 15482 | + { |
| 15483 | + "description": "Machine learning API.", |
| 15484 | + "type": "string", |
| 15485 | + "enum": [ |
| 15486 | + "ml" |
| 15487 | + ] |
| 15488 | + }, |
| 15489 | + { |
| 15490 | + "description": "File API.", |
| 15491 | + "type": "string", |
| 15492 | + "enum": [ |
| 15493 | + "file" |
| 15494 | + ] |
| 15495 | + } |
| 15496 | + ] |
| 15497 | + }, |
15472 | 15498 | "ApiError": {
|
15473 | 15499 | "description": "An error.",
|
15474 | 15500 | "type": "object",
|
@@ -17236,63 +17262,108 @@
|
17236 | 17262 | "description": "ClientMetrics contains information regarding the state of the peer.",
|
17237 | 17263 | "type": "object",
|
17238 | 17264 | "properties": {
|
| 17265 | + "rtc_frame_height": { |
| 17266 | + "nullable": true, |
| 17267 | + "description": "The height of the inbound video stream in pixels.\n\nhttps://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-frameheight", |
| 17268 | + "type": "integer", |
| 17269 | + "format": "uint32", |
| 17270 | + "minimum": 0 |
| 17271 | + }, |
| 17272 | + "rtc_frame_width": { |
| 17273 | + "nullable": true, |
| 17274 | + "description": "The width of the inbound video stream in pixels.\n\nhttps://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-framewidth", |
| 17275 | + "type": "integer", |
| 17276 | + "format": "uint32", |
| 17277 | + "minimum": 0 |
| 17278 | + }, |
17239 | 17279 | "rtc_frames_decoded": {
|
17240 |
| - "description": "Counter of the number of WebRTC frames that the client has decoded during this session.", |
| 17280 | + "nullable": true, |
| 17281 | + "description": "Counter of the number of WebRTC frames that the client has decoded from the inbound video stream.\n\nhttps://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-freezecount", |
17241 | 17282 | "type": "integer",
|
17242 | 17283 | "format": "uint64",
|
17243 | 17284 | "minimum": 0
|
17244 | 17285 | },
|
17245 | 17286 | "rtc_frames_dropped": {
|
17246 |
| - "description": "Counter of the number of WebRTC frames the client has dropped during this session.", |
| 17287 | + "nullable": true, |
| 17288 | + "description": "Counter of the number of WebRTC frames the client has dropped from the inbound video stream.\n\nhttps://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-framesdropped", |
17247 | 17289 | "type": "integer",
|
17248 | 17290 | "format": "uint32",
|
17249 | 17291 | "minimum": 0
|
17250 | 17292 | },
|
17251 | 17293 | "rtc_frames_per_second": {
|
17252 |
| - "description": "Current number of frames being rendered per second. A good target is 60 frames per second, but it can fluctuate depending on network conditions.", |
| 17294 | + "nullable": true, |
| 17295 | + "description": "Current number of frames being rendered in the last second. A good target is 60 frames per second, but it can fluctuate depending on network conditions.\n\nhttps://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-freezecount", |
17253 | 17296 | "type": "integer",
|
17254 | 17297 | "format": "uint8",
|
17255 | 17298 | "minimum": 0
|
17256 | 17299 | },
|
17257 | 17300 | "rtc_frames_received": {
|
17258 |
| - "description": "Counter of the number of WebRTC frames that the client has received during this session.", |
| 17301 | + "nullable": true, |
| 17302 | + "description": "Counter of the number of WebRTC frames that the client has received from the inbound video stream.\n\nhttps://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-freezecount", |
17259 | 17303 | "type": "integer",
|
17260 | 17304 | "format": "uint64",
|
17261 | 17305 | "minimum": 0
|
17262 | 17306 | },
|
17263 | 17307 | "rtc_freeze_count": {
|
17264 |
| - "description": "Number of times the WebRTC playback has frozen. This is usually due to network conditions.", |
| 17308 | + "nullable": true, |
| 17309 | + "description": "Number of times the inbound video playback has frozen. This is usually due to network conditions.\n\nhttps://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-freezecount", |
17265 | 17310 | "type": "integer",
|
17266 | 17311 | "format": "uint32",
|
17267 | 17312 | "minimum": 0
|
17268 | 17313 | },
|
17269 | 17314 | "rtc_jitter_sec": {
|
17270 |
| - "description": "Amount of \"jitter\" in the WebRTC session. Network latency is the time it takes a packet to traverse the network. The amount that the latency varies is the jitter. Video latency is the time it takes to render a frame sent by the server (including network latency). A low jitter means the video latency can be reduced without impacting smooth playback. High jitter means clients will increase video latency to ensure smooth playback.", |
| 17315 | + "nullable": true, |
| 17316 | + "description": "Amount of \"jitter\" in the inbound video stream. Network latency is the time it takes a packet to traverse the network. The amount that the latency varies is the jitter. Video latency is the time it takes to render a frame sent by the server (including network latency). A low jitter means the video latency can be reduced without impacting smooth playback. High jitter means clients will increase video latency to ensure smooth playback.\n\nhttps://www.w3.org/TR/webrtc-stats/#dom-rtcreceivedrtpstreamstats-jitter", |
17271 | 17317 | "type": "number",
|
17272 |
| - "format": "float" |
| 17318 | + "format": "double" |
17273 | 17319 | },
|
17274 | 17320 | "rtc_keyframes_decoded": {
|
17275 |
| - "description": "Number of \"key frames\" decoded in the underlying h.264 stream. A key frame is an expensive (bandwidth-wise) \"full image\" of the video frame. Data after the keyframe become -- effectively -- \"diff\" operations on that key frame. The Engine will only send a keyframe if required, which is an indication that some of the \"diffs\" have been lost, usually an indication of poor network conditions. We like this metric to understand times when the connection has had to recover.", |
| 17321 | + "nullable": true, |
| 17322 | + "description": "Number of \"key frames\" decoded in the inbound h.264 stream. A key frame is an expensive (bandwidth-wise) \"full image\" of the video frame. Data after the keyframe become -- effectively -- \"diff\" operations on that key frame. The Engine will only send a keyframe if required, which is an indication that some of the \"diffs\" have been lost, usually an indication of poor network conditions. We like this metric to understand times when the connection has had to recover.\n\nhttps://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-keyframesdecoded", |
| 17323 | + "type": "integer", |
| 17324 | + "format": "uint32", |
| 17325 | + "minimum": 0 |
| 17326 | + }, |
| 17327 | + "rtc_packets_lost": { |
| 17328 | + "nullable": true, |
| 17329 | + "description": "Amount of packets lost in the inbound video stream.\n\nhttps://www.w3.org/TR/webrtc-stats/#dom-rtcreceivedrtpstreamstats-packetslost", |
17276 | 17330 | "type": "integer",
|
17277 | 17331 | "format": "uint32",
|
17278 | 17332 | "minimum": 0
|
17279 | 17333 | },
|
| 17334 | + "rtc_pause_count": { |
| 17335 | + "nullable": true, |
| 17336 | + "description": "Count of the total number of video pauses experienced by this receiver.\n\nhttps://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-pausecount", |
| 17337 | + "type": "integer", |
| 17338 | + "format": "uint32", |
| 17339 | + "minimum": 0 |
| 17340 | + }, |
| 17341 | + "rtc_pli_count": { |
| 17342 | + "nullable": true, |
| 17343 | + "description": "Count the total number of Picture Loss Indication (PLI) packets.\n\nhttps://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-plicount", |
| 17344 | + "type": "integer", |
| 17345 | + "format": "uint32", |
| 17346 | + "minimum": 0 |
| 17347 | + }, |
| 17348 | + "rtc_stun_rtt_sec": { |
| 17349 | + "nullable": true, |
| 17350 | + "description": "Total duration of pauses in seconds.\n\nThis is the \"ping\" between the client and the STUN server. Not to be confused with the E2E RTT documented [here](https://www.w3.org/TR/webrtc-stats/#dom-rtcremoteinboundrtpstreamstats-roundtriptime)\n\nhttps://www.w3.org/TR/webrtc-stats/#dom-rtcicecandidatepairstats-currentroundtriptime", |
| 17351 | + "type": "number", |
| 17352 | + "format": "float" |
| 17353 | + }, |
17280 | 17354 | "rtc_total_freezes_duration_sec": {
|
17281 |
| - "description": "Number of seconds of frozen video the user has been subjected to.", |
| 17355 | + "nullable": true, |
| 17356 | + "description": "Number of seconds of frozen video the user has been subjected to.\n\nhttps://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-totalfreezesduration", |
| 17357 | + "type": "number", |
| 17358 | + "format": "float" |
| 17359 | + }, |
| 17360 | + "rtc_total_pauses_duration_sec": { |
| 17361 | + "nullable": true, |
| 17362 | + "description": "Count of the total number of video pauses experienced by this receiver.\n\nhttps://www.w3.org/TR/webrtc-stats/#dom-rtcinboundrtpstreamstats-totalpausesduration", |
17282 | 17363 | "type": "number",
|
17283 | 17364 | "format": "float"
|
17284 | 17365 | }
|
17285 |
| - }, |
17286 |
| - "required": [ |
17287 |
| - "rtc_frames_decoded", |
17288 |
| - "rtc_frames_dropped", |
17289 |
| - "rtc_frames_per_second", |
17290 |
| - "rtc_frames_received", |
17291 |
| - "rtc_freeze_count", |
17292 |
| - "rtc_jitter_sec", |
17293 |
| - "rtc_keyframes_decoded", |
17294 |
| - "rtc_total_freezes_duration_sec" |
17295 |
| - ] |
| 17366 | + } |
17296 | 17367 | },
|
17297 | 17368 | "ClosePath": {
|
17298 | 17369 | "description": "The response from the `ClosePath` command.",
|
|
21933 | 22004 | "description": "A description of the tier.",
|
21934 | 22005 | "type": "string"
|
21935 | 22006 | },
|
| 22007 | + "endpoints_included": { |
| 22008 | + "description": "The Zoo API endpoints that are included when through an approved zoo tool.", |
| 22009 | + "type": "array", |
| 22010 | + "items": { |
| 22011 | + "$ref": "#/components/schemas/ApiEndpoint" |
| 22012 | + } |
| 22013 | + }, |
21936 | 22014 | "features": {
|
21937 | 22015 | "description": "Features that are included in the subscription.",
|
21938 | 22016 | "type": "array",
|
|
34377 | 34455 | "description": "A description of the tier.",
|
34378 | 34456 | "type": "string"
|
34379 | 34457 | },
|
| 34458 | + "endpoints_included": { |
| 34459 | + "description": "The Zoo API endpoints that are included when through an approved zoo tool.", |
| 34460 | + "type": "array", |
| 34461 | + "items": { |
| 34462 | + "$ref": "#/components/schemas/ApiEndpoint" |
| 34463 | + } |
| 34464 | + }, |
34380 | 34465 | "features": {
|
34381 | 34466 | "description": "Features that are included in the subscription.",
|
34382 | 34467 | "type": "array",
|
|
0 commit comments