FakerAPI · JSON Structure

Fakerapi Place Structure

A fake geographic coordinate pair produced by FakerAPI /api/v1/places.

Type: object Properties: 2 Required: 2
Test DataFake DataMockingDeveloper ToolsOpen SourcePublic APIs

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

Properties

latitude longitude

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/place.json",
  "name": "Place",
  "description": "A fake geographic coordinate pair produced by FakerAPI /api/v1/places.",
  "type": "object",
  "properties": {
    "latitude": { "type": "double", "minimum": -90, "maximum": 90 },
    "longitude": { "type": "double", "minimum": -180, "maximum": 180 }
  },
  "required": ["latitude", "longitude"]
}