Interweave
GitHubGitHub (opens in a new tab) (opens in a new tab)
  • Welcome
  • Getting Started
  • Pricing
  • Tutorial
  • API
  • Specification
    • Fields
      • Schema
      • Validation
      • Interface
    • Access
    • Authentication
    • Requests
    • Billing Strategy

    • URL Parameters
    • Using Variables
    • Dynamic Data
  • Build
    • buildInterface()
    • Do It Yourself
  • Types
    • Request
  • More
  • FAQ
  • Roadmap
  • Support
  • Accessibility
  • Privacy Policy
  • Terms of Service
  • Welcome
  • Getting Started
  • Pricing
  • Tutorial
  • API
  • Specification
    • Fields
      • Schema
      • Validation
      • Interface
    • Access
    • Authentication
    • Requests
    • Billing Strategy

    • URL Parameters
    • Using Variables
    • Dynamic Data
  • Build
    • buildInterface()
    • Do It Yourself
  • Types
    • Request
  • More
  • FAQ
  • Roadmap
  • Support
  • Accessibility
  • Privacy Policy
  • Terms of Service
Question? Give us feedback → (opens in a new tab)Edit this page
Specification
Fields

Fields

fields is an object that contains the outline of your schema. The properties will be the fields within your data object.

const config = {
	key: ...,
	fields: {
		"firstName": {
			schema: {
				type: "string";
			}
		},
		"lastName": {
			schema: {
				type: "string"
			}
		}
	}
}
TutorialSchema

2023 © Carbonology Interactive LLC