All schemas

test

Canonical URL: http://schematalog.com/api/schemas/test/versions/1.2

Published: 20 June 2023 08:25

Properties

This schema has no properties.

JSON
{
  "$id": "http://schematalog.com/api/schemas/test/versions/1.2",
  "title": "test"
}
YAML
$id: http://schematalog.com/api/schemas/test/versions/1.2
title: test
Python Code
from __future__ import annotations

from typing import Any

from pydantic import Field, RootModel


class Test(RootModel[Any]):
    root: Any = Field(..., title='test')
AVRO Schema
[]