{
  "type": "object",
  "properties": {
    "name": {
      "description": "Name of the network configuration. Must be between 1 and 100 characters and may only contain upper and lowercase letters a-z, numbers 0-9, '.', '-', and '_'.",
      "type": "string"
    },
    "compute_service": {
      "description": "The hosted compute service to use for the network configuration.",
      "type": "string",
      "enum": [
        "none",
        "actions"
      ]
    },
    "network_settings_ids": {
      "type": "array",
      "minItems": 1,
      "maxItems": 1,
      "description": "A list of identifiers of the network settings resources to use for the network configuration. Exactly one resource identifier must be specified in the list.",
      "items": {
        "type": "string"
      }
    }
  },
  "required": [
    "name",
    "network_settings_ids"
  ],
  "$schema": "https://json-schema.org/draft/2019-09/schema"
}