FakerAPI · JSON Structure

Fakerapi User Structure

A fake application user account produced by FakerAPI /api/v1/users.

Type: object Properties: 11 Required: 4
Test DataFake DataMockingDeveloper ToolsOpen SourcePublic APIs

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

Properties

id uuid firstname lastname username password email ip macAddress website image

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://fakerapi.it/structures/user.json",
  "name": "User",
  "description": "A fake application user account produced by FakerAPI /api/v1/users.",
  "type": "object",
  "properties": {
    "id": { "type": "int32" },
    "uuid": { "type": "uuid" },
    "firstname": { "type": "string" },
    "lastname": { "type": "string" },
    "username": { "type": "string" },
    "password": { "type": "string" },
    "email": { "type": "string" },
    "ip": { "type": "string" },
    "macAddress": { "type": "string" },
    "website": { "type": "uri" },
    "image": { "type": "uri" }
  },
  "required": ["id", "uuid", "username", "email"]
}