FakerAPI · JSON Structure

Fakerapi Company Structure

A fake business / company record produced by FakerAPI /api/v1/companies.

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

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

Properties

id name email vat phone country addresses 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/company.json",
  "name": "Company",
  "description": "A fake business / company record produced by FakerAPI /api/v1/companies.",
  "type": "object",
  "properties": {
    "id": { "type": "int32" },
    "name": { "type": "string" },
    "email": { "type": "string" },
    "vat": { "type": "string" },
    "phone": { "type": "string" },
    "country": { "type": "string" },
    "addresses": {
      "type": "array",
      "items": { "$ref": "fakerapi-address-structure.json" }
    },
    "website": { "type": "uri" },
    "image": { "type": "uri" }
  },
  "required": ["id", "name", "email", "country"]
}