FakerAPI · Schema

Company

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

Test DataFake DataMockingDeveloper ToolsOpen SourcePublic APIs

Properties

Name Type Description
id integer
name string Legal company name.
email string Primary contact email.
vat string VAT / tax identification number.
phone string Primary phone number.
country string Country of registration.
addresses array Company addresses.
website string
image string Logo placeholder URL.
View JSON Schema on GitHub

JSON Schema

fakerapi-company-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://fakerapi.it/schemas/company.json",
  "title": "Company",
  "description": "A fake business / company record produced by FakerAPI /api/v1/companies.",
  "type": "object",
  "properties": {
    "id": { "type": "integer", "example": 1 },
    "name": { "type": "string", "description": "Legal company name.", "example": "Krajcik LLC" },
    "email": { "type": "string", "format": "email", "description": "Primary contact email.", "example": "[email protected]" },
    "vat": { "type": "string", "description": "VAT / tax identification number.", "example": "07027776643" },
    "phone": { "type": "string", "description": "Primary phone number.", "example": "+14252384998" },
    "country": { "type": "string", "description": "Country of registration.", "example": "Belize" },
    "addresses": {
      "type": "array",
      "description": "Company addresses.",
      "items": { "$ref": "fakerapi-address-schema.json" }
    },
    "website": { "type": "string", "format": "uri", "example": "http://blick.biz" },
    "image": { "type": "string", "format": "uri", "description": "Logo placeholder URL.", "example": "http://placeimg.com/640/480/people" }
  },
  "required": ["id", "name", "email", "country"]
}