Netlify · Schema

submission

CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites

Properties

Name Type Description
id string
number integer
email string
name string
first_name string
last_name string
company string
summary string
body string
data object
created_at string
site_url string
View JSON Schema on GitHub

JSON Schema

netlify-submission-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/submission",
  "title": "submission",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "number": {
      "type": "integer",
      "format": "int32"
    },
    "email": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "first_name": {
      "type": "string"
    },
    "last_name": {
      "type": "string"
    },
    "company": {
      "type": "string"
    },
    "summary": {
      "type": "string"
    },
    "body": {
      "type": "string"
    },
    "data": {
      "type": "object",
      "properties": {}
    },
    "created_at": {
      "type": "string",
      "format": "dateTime"
    },
    "site_url": {
      "type": "string"
    }
  }
}