{
  "$id": "https://standard.ofds.info/en/0__4__0/network-package-schema.json",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Network package",
  "description": "A container for publishing Open Fibre Data Standard networks.",
  "type": "object",
  "required": [
    "networks"
  ],
  "properties": {
    "networks": {
      "title": "Networks",
      "description": "One or more OFDS networks.",
      "type": "array",
      "minItems": 1,
      "items": {
        "$ref": "https://standard.ofds.info/en/0__4__0/network-schema.json"
      }
    },
    "links": {
      "title": "Links",
      "description": "Links to the next and previous sequential packages, to support pagination.",
      "type": "object",
      "properties": {
        "next": {
          "title": "Next",
          "description": "A URL to the next sequential package.",
          "type": "string",
          "format": "iri"
        },
        "prev": {
          "title": "Previous",
          "description": "A URL to the previous sequential package.",
          "type": "string",
          "format": "iri"
        }
      },
      "minProperties": 1
    }
  },
  "minProperties": 1
}
