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=-name
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=-name",
    "results": [
        {
            "id": 7,
            "name": "Month",
            "abbrev": "M",
            "description": "The T-0 is expected in the given month."
        },
        {
            "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."
        },
        {
            "id": 15,
            "name": "Fiscal Year",
            "abbrev": "FY",
            "description": "The T-0 is expected in the given fiscal year of the launch country."
        },
        {
            "id": 16,
            "name": "Decade",
            "abbrev": "DEC",
            "description": "The T-0 is expected in the given decade."
        },
        {
            "id": 5,
            "name": "Day",
            "abbrev": "DAY",
            "description": "The T-0 is expected on the given day."
        },
        {
            "id": 4,
            "name": "Afternoon",
            "abbrev": "PM",
            "description": "The T-0 is expected in the afternoon (local time)."
        }
    ]
}