1Factory · JSON Structure

1Factory User Structure

User schema from 1Factory API

Type: object Properties: 3 Required: 3
AnalyticsData CollectionManufacturingMonitoringQuality

User is a JSON Structure definition published by 1Factory, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name email

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/1factory/refs/heads/main/json-structure/1factory-user-structure.json",
  "name": "User",
  "description": "User schema from 1Factory API",
  "type": "object",
  "properties": {
    "id": {
      "type": "int32",
      "nullable": false,
      "description": "Unique identifier for the user.",
      "example": 5127
    },
    "name": {
      "type": "string",
      "nullable": false,
      "maxLength": 255,
      "description": "Full name of the user.",
      "example": "John Doe"
    },
    "email": {
      "type": "string",
      "nullable": false,
      "format": "email",
      "maxLength": 255,
      "description": "Email address of the user.",
      "example": "jon.doe@1factory.com"
    }
  },
  "required": [
    "id",
    "name",
    "email"
  ]
}