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&offset=10&ordering=-description
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "count": 17,
    "next": null,
    "previous": "https://lldev.thespacedevs.com/2.2.0/config/netprecision/?format=api&limit=10&ordering=-description",
    "results": [
        {
            "id": 11,
            "name": "Quarter 4",
            "abbrev": "Q4",
            "description": "The T-0 is expected in the fourth 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": 12,
            "name": "Year Half 1",
            "abbrev": "H1",
            "description": "The T-0 is expected in the first half of the given year."
        },
        {
            "id": 4,
            "name": "Afternoon",
            "abbrev": "PM",
            "description": "The T-0 is expected in the afternoon (local time)."
        },
        {
            "id": 0,
            "name": "Second",
            "abbrev": "SEC",
            "description": "The T-0 is accurate to the second."
        },
        {
            "id": 1,
            "name": "Minute",
            "abbrev": "MIN",
            "description": "The T-0 is accurate to the minute."
        },
        {
            "id": 2,
            "name": "Hour",
            "abbrev": "HR",
            "description": "The T-0 is accurate to the hour."
        }
    ]
}