{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CustomVcl", "title": "CustomVcl", "type": "object", "description": "A full custom VCL file uploaded for a service version.", "properties": { "name": { "type": "string", "description": "The name of the custom VCL file." }, "content": { "type": "string", "description": "The VCL source code." }, "main": { "type": "boolean", "description": "Whether this is the main VCL file for the service version." } } }