1. التحسينات المعمارية في مسودة JSON Schema Draft 2020-12 وتوافقها مع OpenAPI 3.1
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://yourdomain.com/schemas/item.json",
"type": "object",
"properties": {
"itemId": { "type": "integer" },
"name": { "type": "string", "minLength": 1 },
"price": { "type": "number", "exclusiveMinimum": 0 }
},
"required": ["itemId", "name", "price"]
}مخطط JSON Schema متوافق مع مسودة Draft 2020-12 يوضح الخصائص الإلزامية والقيود الحسابية.