{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/customers-language-schema.json", "title": "Language", "description": "Sorted Language", "type": "object", "properties": { "LanguageId": { "description": "ISO 639-1 Language Code", "type": "string", "example": "500123" }, "DisplayOrder": { "format": "int32", "description": "Display Order", "type": "integer", "example": 1 }, "Name": { "description": "Language Name", "type": "string", "example": "Example Name" }, "Enabled": { "description": "Is the language enabled for use.", "type": "boolean", "example": true } } }