FormAssembly · Schema

FormAssembly Theme

A CSS theme applied to FormAssembly forms for visual customization.

FormsData CollectionSalesforceEnterpriseHIPAAComplianceGovernmentFedRAMPWorkflowsE-Signatures

Properties

Name Type Description
id integer Unique identifier of the theme
name string Display name of the theme
css_data string Full CSS stylesheet content defining the theme's visual appearance
View JSON Schema on GitHub

JSON Schema

formassembly-theme.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/formassembly/main/json-schema/formassembly-theme.json",
  "title": "FormAssembly Theme",
  "description": "A CSS theme applied to FormAssembly forms for visual customization.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier of the theme"
    },
    "name": {
      "type": "string",
      "description": "Display name of the theme"
    },
    "css_data": {
      "type": "string",
      "description": "Full CSS stylesheet content defining the theme's visual appearance"
    }
  },
  "required": ["id", "name"]
}