Juniper Networks · Schema

Juniper Apstra Blueprint

Schema representing a Juniper Apstra data center blueprint. A blueprint is the core abstraction in Apstra that defines the intended state of a data center fabric, including its topology, resource allocations, virtual networks, and policies.

AIAutomationCloudEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
id string Unique blueprint identifier
label string Blueprint display name
design string Data center fabric design type
status string Current blueprint operational status
version integer Blueprint version number (incremented on deploy)
anomaly_count integer Number of intent-based analytics anomalies detected
build_errors_count integer Number of build errors preventing deployment
build_warnings_count integer Number of build warnings
topology object Fabric topology definition
resource_allocations object Resource pool assignments
virtual_networks array Virtual networks defined in the blueprint
security_zones array Routing zones (VRFs) in the blueprint
template_id string Design template used to create this blueprint
created_at string
last_modified_at string
last_deployed_at string
View JSON Schema on GitHub

JSON Schema

juniper-blueprint.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-search/juniper/json-schema/juniper-blueprint.json",
  "title": "Juniper Apstra Blueprint",
  "description": "Schema representing a Juniper Apstra data center blueprint. A blueprint is the core abstraction in Apstra that defines the intended state of a data center fabric, including its topology, resource allocations, virtual networks, and policies.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Unique blueprint identifier"
    },
    "label": {
      "type": "string",
      "description": "Blueprint display name"
    },
    "design": {
      "type": "string",
      "enum": [
        "two_stage_l3clos",
        "freeform"
      ],
      "description": "Data center fabric design type"
    },
    "status": {
      "type": "string",
      "description": "Current blueprint operational status"
    },
    "version": {
      "type": "integer",
      "description": "Blueprint version number (incremented on deploy)"
    },
    "anomaly_count": {
      "type": "integer",
      "minimum": 0,
      "description": "Number of intent-based analytics anomalies detected"
    },
    "build_errors_count": {
      "type": "integer",
      "minimum": 0,
      "description": "Number of build errors preventing deployment"
    },
    "build_warnings_count": {
      "type": "integer",
      "minimum": 0,
      "description": "Number of build warnings"
    },
    "topology": {
      "type": "object",
      "description": "Fabric topology definition",
      "properties": {
        "spine_count": {
          "type": "integer",
          "minimum": 1
        },
        "leaf_count": {
          "type": "integer",
          "minimum": 1
        },
        "superspine_count": {
          "type": "integer",
          "minimum": 0
        },
        "rack_count": {
          "type": "integer"
        }
      }
    },
    "resource_allocations": {
      "type": "object",
      "description": "Resource pool assignments",
      "properties": {
        "asn_pool_ids": {
          "type": "array",
          "items": {
            "type": "string",
            "format": "uuid"
          }
        },
        "ip_pool_ids": {
          "type": "array",
          "items": {
            "type": "string",
            "format": "uuid"
          }
        },
        "vni_pool_ids": {
          "type": "array",
          "items": {
            "type": "string",
            "format": "uuid"
          }
        }
      }
    },
    "virtual_networks": {
      "type": "array",
      "description": "Virtual networks defined in the blueprint",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid"
          },
          "label": {
            "type": "string"
          },
          "vn_type": {
            "type": "string",
            "enum": ["vxlan", "vlan"]
          },
          "security_zone_id": {
            "type": "string",
            "format": "uuid"
          }
        }
      }
    },
    "security_zones": {
      "type": "array",
      "description": "Routing zones (VRFs) in the blueprint",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "format": "uuid"
          },
          "label": {
            "type": "string"
          },
          "vrf_name": {
            "type": "string"
          }
        }
      }
    },
    "template_id": {
      "type": "string",
      "format": "uuid",
      "description": "Design template used to create this blueprint"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "last_modified_at": {
      "type": "string",
      "format": "date-time"
    },
    "last_deployed_at": {
      "type": "string",
      "format": "date-time"
    }
  },
  "required": ["id", "label", "design"]
}