Netlify · Schema

form

CDNCloudContinuous DeploymentEdge ComputingJAMstackServerlessServerless FunctionsStatic SitesWeb HostingWebsites

Properties

Name Type Description
id string
site_id string
name string
paths array
submission_count integer
fields array
created_at string
View JSON Schema on GitHub

JSON Schema

netlify-form-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/form",
  "title": "form",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "site_id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "paths": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "submission_count": {
      "type": "integer",
      "format": "int32"
    },
    "fields": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {}
      }
    },
    "created_at": {
      "type": "string",
      "format": "dateTime"
    }
  }
}