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
HTTP 200 OK
Allow: GET
Content-Type: application/json
Vary: Accept

{
    "count": 17,
    "next": null,
    "previous": "https://ll.thespacedevs.com/2.2.0/config/netprecision/?format=api&limit=10",
    "results": [
        {
            "id": 11,
            "name": "Quarter 4",
            "abbrev": "Q4",
            "description": "The T-0 is expected in the fourth 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": 13,
            "name": "Year Half 2",
            "abbrev": "H2",
            "description": "The T-0 is expected in the second half of the given year."
        },
        {
            "id": 14,
            "name": "Year",
            "abbrev": "Y",
            "description": "The T-0 is expected in the given year."
        },
        {
            "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": 6,
            "name": "Week",
            "abbrev": "WK",
            "description": "The T-0 is expected in the given week (starting on Monday according to ISO 8601)."
        }
    ]
}