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=-abbrev
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=-abbrev",
    "previous": null,
    "results": [
        {
            "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": 4,
            "name": "Afternoon",
            "abbrev": "PM",
            "description": "The T-0 is expected in the afternoon (local time)."
        },
        {
            "id": 1,
            "name": "Minute",
            "abbrev": "MIN",
            "description": "The T-0 is accurate to the minute."
        },
        {
            "id": 7,
            "name": "Month",
            "abbrev": "M",
            "description": "The T-0 is expected in the given month."
        }
    ]
}