Auth0 · Schema

FormNodeCoordinates

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
x integer
y integer
View JSON Schema on GitHub

JSON Schema

auth0-formnodecoordinates-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FormNodeCoordinates",
  "title": "FormNodeCoordinates",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "x",
    "y"
  ],
  "properties": {
    "x": {
      "type": "integer",
      "minimum": -999999,
      "maximum": 999999
    },
    "y": {
      "type": "integer",
      "minimum": -999999,
      "maximum": 999999
    }
  }
}