Property name.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Name", "title": "Name", "required": [ "type" ], "type": "object", "description": "Property name.", "properties": { "type": { "type": "string", "description": "Type of property.", "enum": [ "array", "boolean", "integer", "number", "object", "string" ], "example": "string" } } }