{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Domain", "title": "Domain", "type": "object", "description": "A domain associated with a Fastly service, serving as the entry point for traffic routed through Fastly's edge network.", "properties": { "name": { "type": "string", "description": "The domain name." }, "comment": { "type": "string", "description": "A freeform descriptive note about the domain." }, "service_id": { "type": "string", "description": "The alphanumeric string identifying the service." }, "version": { "type": "integer", "description": "The version number the domain is associated with." }, "created_at": { "type": "string", "format": "date-time", "description": "The date and time the domain was created." }, "updated_at": { "type": "string", "format": "date-time", "description": "The date and time the domain was last updated." }, "deleted_at": { "type": "string", "format": "date-time", "nullable": true, "description": "The date and time the domain was deleted." } } }