addedInput schema / properties / request / properties / limit
Added value: +{
+ "default": 500,
+ "maximum": 2000,
+ "minimum": 1,
+ "type": "integer"
+}
addedInput schema / properties / request / properties / offset
Added value: +{
+ "default": 0,
+ "minimum": 0,
+ "type": "integer"
+}
addedOutput schema / properties / metadata / properties / available_series
Added value: +{
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
addedOutput schema / properties / metadata / properties / cache_age
Added value: +{
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Age of the cached provider result in seconds when served."
+}
addedOutput schema / properties / metadata / properties / cache_hit
Added value: +{
+ "default": false,
+ "type": "boolean"
+}
addedOutput schema / properties / metadata / properties / completeness
Added value: +{
+ "default": "unknown",
+ "description": "Completeness of the requested observations or series.",
+ "enum": [
+ "complete",
+ "partial",
+ "degraded",
+ "empty",
+ "unknown"
+ ],
+ "type": "string"
+}
addedOutput schema / properties / metadata / properties / expected_observation_count
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+}
addedOutput schema / properties / metadata / properties / expected_observations
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+}
addedOutput schema / properties / metadata / properties / finality
Added value: +{
+ "default": "unknown",
+ "description": "Whether published observations are final or still preliminary.",
+ "enum": [
+ "final",
+ "preliminary",
+ "unknown"
+ ],
+ "type": "string"
+}
addedOutput schema / properties / metadata / properties / missing_observation_count
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+}
addedOutput schema / properties / metadata / properties / missing_observations
Added value: +{
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+}
addedOutput schema / properties / metadata / properties / missing_series
Added value: +{
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+}
addedOutput schema / properties / metadata / properties / observation_type
Added value: +{
+ "default": "actual",
+ "description": "What kind of observation a response contains.\n\n``DataStatus`` predates this distinction and remains available for\ncompatibility. ``observation_type`` should be used when a client needs\nto distinguish an actual observation from a forecast or a derived value.",
+ "enum": [
+ "actual",
+ "forecast",
+ "derived",
+ "unknown"
+ ],
+ "type": "string"
+}
changedOutput schema / properties / metadata / properties / provider / enum
Previous value: -[
- "gridstatus",
- "aeso_apim",
- "derived"
-]New value: +[
+ "gridstatus",
+ "aeso_apim",
+ "aeso_public_report",
+ "derived"
+]
addedOutput schema / properties / metadata / properties / served_at
Added value: +{
+ "anyOf": [
+ {
+ "format": "date-time",
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+}
addedOutput schema / properties / page
Added value: +{
+ "additionalProperties": false,
+ "description": "Pagination state for a stable in-memory report result.",
+ "properties": {
+ "limit": {
+ "type": "integer"
+ },
+ "next_offset": {
+ "anyOf": [
+ {
+ "type": "integer"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+ },
+ "offset": {
+ "type": "integer"
+ },
+ "returned": {
+ "type": "integer"
+ },
+ "total": {
+ "type": "integer"
+ }
+ },
+ "required": [
+ "offset",
+ "limit",
+ "returned",
+ "total"
+ ],
+ "type": "object"
+}
changedOutput schema / required
Previous value: -[
- "intervals",
- "metadata"
-]New value: +[
+ "intervals",
+ "page",
+ "metadata"
+]