API endpoint that allows NetPrecision levels to be viewed.

GET:
Return a list of all the existing NetPrecision levels.

GET /2.2.0/config/netprecision/?format=api&ordering=-name
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "count": 17,
    "next": "https://ll.thespacedevs.com/2.2.0/config/netprecision/?format=api&limit=10&offset=10&ordering=-name",
    "previous": null,
    "results": [
        {
            "id": 13,
            "name": "Year Half 2",
            "abbrev": "H2",
            "description": "The T-0 is expected in the second half of the given year."
        },
        {
            "id": 12,
            "name": "Year Half 1",
            "abbrev": "H1",
            "description": "The T-0 is expected in the first half of the given year."
        },
        {
            "id": 14,
            "name": "Year",
            "abbrev": "Y",
            "description": "The T-0 is expected in the given year."
        },
        {
            "id": 6,
            "name": "Week",
            "abbrev": "WK",
            "description": "The T-0 is expected in the given week (starting on Monday according to ISO 8601)."
        },
        {
            "id": 0,
            "name": "Second",
            "abbrev": "SEC",
            "description": "The T-0 is accurate to the second."
        },
        {
            "id": 11,
            "name": "Quarter 4",
            "abbrev": "Q4",
            "description": "The T-0 is expected in the fourth quarter of the given year."
        },
        {
            "id": 10,
            "name": "Quarter 3",
            "abbrev": "Q3",
            "description": "The T-0 is expected in the third quarter of the given year."
        },
        {
            "id": 9,
            "name": "Quarter 2",
            "abbrev": "Q2",
            "description": "The T-0 is expected in the second quarter of the given year."
        },
        {
            "id": 8,
            "name": "Quarter 1",
            "abbrev": "Q1",
            "description": "The T-0 is expected in the first quarter of the given year."
        },
        {
            "id": 3,
            "name": "Morning",
            "abbrev": "AM",
            "description": "The T-0 is expected in the morning (local time)."
        }
    ]
}