xref: /aosp_15_r20/external/json-schema-validator/src/test/resources/schema/read-only-schema.json (revision 78c4dd6aa35290980cdcd1623a7e337e8d021c7c)
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