1{ 2 "$schema": "https://json-schema.org/draft/2020-12/schema", 3 "title": "Read Only Schema", 4 "description": "Testing Read Only Schema Validation", 5 "type": "object", 6 "properties": { 7 "firstName": { 8 "type": "string", 9 "readOnly": true 10 }, 11 "lastName": { 12 "type": "string" 13 } 14 } 15} 16