mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
15 lines
282 B
JSON
15 lines
282 B
JSON
{
|
|
"definitions": {},
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"type": "object",
|
|
"title": "Test Validation Schema",
|
|
"required": ["id"],
|
|
"properties": {
|
|
"id": {
|
|
"type": "number",
|
|
"title": "ID for object",
|
|
"pattern": "[0-9]+"
|
|
}
|
|
}
|
|
}
|