Mockaroo · JSON Structure

Mockaroo Field Type Structure

Metadata describing a single built-in Mockaroo field type, as returned by /api/types.

Type: object Properties: 4 Required: 1
Test DataMock DataAPI MockingData GenerationDeveloper ToolsQA TestingRealistic DataSchemasDatasetsPublic APIs

MockarooFieldType is a JSON Structure definition published by Mockaroo, describing 4 properties, of which 1 is required. It conforms to the https://json-structure.org/draft-00/schema meta-schema.

Properties

name description category parameters

Meta-schema: https://json-structure.org/draft-00/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft-00/schema",
  "$id": "https://www.mockaroo.com/structures/mockaroo-field-type.json",
  "name": "MockarooFieldType",
  "type": "object",
  "description": "Metadata describing a single built-in Mockaroo field type, as returned by /api/types.",
  "properties": {
    "name": { "type": "string", "description": "Display name." },
    "description": { "type": "string", "description": "What the field generates." },
    "category": { "type": "string", "description": "Catalog category." },
    "parameters": {
      "type": "array",
      "description": "Configurable parameters for this field type.",
      "items": { "type": "object" }
    }
  },
  "required": ["name"]
}