{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BlueprintSummary", "title": "BlueprintSummary", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "description": "Blueprint unique identifier." }, "label": { "type": "string", "description": "Blueprint label." }, "design": { "type": "string", "description": "Design type." }, "status": { "type": "string", "description": "Blueprint deployment status." }, "build_errors_count": { "type": "integer", "description": "Number of build errors." }, "build_warnings_count": { "type": "integer", "description": "Number of build warnings." }, "version": { "type": "integer", "description": "Current blueprint version." } } }