AeroDataBox · Schema
SolarStateContract
Solar information at the moment
AviationFlightsAerospaceFlight DataAirport Data
Properties
| Name | Type | Description |
|---|---|---|
| location | object | |
| sunElevation | object | |
| sunAzimuth | object | |
| dayTime | array | Daytime states |
| dawnAstronomical | object | |
| dawnNautical | object | |
| dawnCivil | object | |
| sunrise | object | |
| noonTrue | object | |
| sunset | object | |
| duskCivil | object | |
| duskNautical | object | |
| duskAstronomical | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SolarStateContract",
"title": "SolarStateContract",
"required": [
"dayTime",
"location",
"sunAzimuth",
"sunElevation"
],
"type": "object",
"properties": {
"location": {
"$ref": "#/components/schemas/GeoCoordinatesContract"
},
"sunElevation": {
"$ref": "#/components/schemas/Angle"
},
"sunAzimuth": {
"$ref": "#/components/schemas/Azimuth"
},
"dayTime": {
"type": "array",
"items": {
"$ref": "#/components/schemas/DayTime"
},
"description": "Daytime states"
},
"dawnAstronomical": {
"$ref": "#/components/schemas/DateTimeContract"
},
"dawnNautical": {
"$ref": "#/components/schemas/DateTimeContract"
},
"dawnCivil": {
"$ref": "#/components/schemas/DateTimeContract"
},
"sunrise": {
"$ref": "#/components/schemas/DateTimeContract"
},
"noonTrue": {
"$ref": "#/components/schemas/DateTimeContract"
},
"sunset": {
"$ref": "#/components/schemas/DateTimeContract"
},
"duskCivil": {
"$ref": "#/components/schemas/DateTimeContract"
},
"duskNautical": {
"$ref": "#/components/schemas/DateTimeContract"
},
"duskAstronomical": {
"$ref": "#/components/schemas/DateTimeContract"
}
},
"additionalProperties": false,
"description": "Solar information at the moment"
}