{
	"$schema": "http://json-schema.org/draft-07/schema#",
	"$id": "/atom/cta",
	"title": "cta",
	"description": "A cta atom",
	"type": "object",
	"properties": {
		"text": {
			"description": "Button text",
			"type": "string"
		},
		"href": {
			"description": "URL",
			"type": "string"
		},
		"icon": {
			"description": "An icon atom",
			"enum": ["nitro"]
		}
	},
	"required": ["text", "href", "icon"]
}
