-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix: Adds AAT v1 schemas (fixes: #63)
- Loading branch information
1 parent
f0d8762
commit fbc2507
Showing
9 changed files
with
348 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"$anchor": "search-article", | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"type": "object", | ||
"$patch": { | ||
"source": { | ||
"$ref": "article" | ||
}, | ||
"with": { | ||
"properties": { | ||
"_search": { | ||
"type": "object", | ||
"title": "Search", | ||
"default": {}, | ||
"properties": { | ||
"_isEnabled": { | ||
"type": "boolean", | ||
"title": "Enable search", | ||
"default": true | ||
}, | ||
"title": { | ||
"type": "string", | ||
"title": "Alternative title", | ||
"description": "Alternative title for the search result", | ||
"default": "", | ||
"_adapt": { | ||
"translatable": true | ||
} | ||
}, | ||
"keywords": { | ||
"type": "string", | ||
"title": "Keywords", | ||
"description": "You may enter search words here that are associated with this article but may not visually appear within this article.", | ||
"default": "", | ||
"_adapt": { | ||
"translatable": true | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"$anchor": "search-block", | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"type": "object", | ||
"$patch": { | ||
"source": { | ||
"$ref": "block" | ||
}, | ||
"with": { | ||
"properties": { | ||
"_search": { | ||
"type": "object", | ||
"title": "Search", | ||
"default": {}, | ||
"properties": { | ||
"_isEnabled": { | ||
"type": "boolean", | ||
"title": "Enable search", | ||
"default": true | ||
}, | ||
"title": { | ||
"type": "string", | ||
"title": "Alternative title", | ||
"description": "Alternative title for the search result", | ||
"default": "", | ||
"_adapt": { | ||
"translatable": true | ||
} | ||
}, | ||
"keywords": { | ||
"type": "string", | ||
"title": "Keywords", | ||
"description": "You may enter search words here that are associated with this block but may not visually appear within this block.", | ||
"default": "", | ||
"_adapt": { | ||
"translatable": true | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"$anchor": "search-component", | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"type": "object", | ||
"$patch": { | ||
"source": { | ||
"$ref": "component" | ||
}, | ||
"with": { | ||
"properties": { | ||
"_search": { | ||
"type": "object", | ||
"title": "Search", | ||
"default": {}, | ||
"properties": { | ||
"_isEnabled": { | ||
"type": "boolean", | ||
"title": "Enable search", | ||
"default": true | ||
}, | ||
"title": { | ||
"type": "string", | ||
"title": "Alternative title", | ||
"description": "Alternative title for the search result", | ||
"default": "", | ||
"_adapt": { | ||
"translatable": true | ||
} | ||
}, | ||
"keywords": { | ||
"type": "string", | ||
"title": "Keywords", | ||
"description": "You may enter search words here that are associated with this component but may not visually appear within this component.", | ||
"default": "", | ||
"_adapt": { | ||
"translatable": true | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
{ | ||
"$anchor": "search-contentobject", | ||
"$schema": "https://json-schema.org/draft/2020-12/schema", | ||
"type": "object", | ||
"$patch": { | ||
"source": { | ||
"$ref": "contentobject" | ||
}, | ||
"with": { | ||
"properties": { | ||
"_search": { | ||
"type": "object", | ||
"title": "Search", | ||
"default": {}, | ||
"properties": { | ||
"_isEnabled": { | ||
"type": "boolean", | ||
"title": "Enable search", | ||
"default": true | ||
}, | ||
"title": { | ||
"type": "string", | ||
"title": "Alternative title", | ||
"description": "Alternative title for the search result", | ||
"default": "", | ||
"_adapt": { | ||
"translatable": true | ||
} | ||
}, | ||
"keywords": { | ||
"type": "string", | ||
"title": "Keywords", | ||
"description": "You may enter search words here that are associated with this page but may not appear on this page.", | ||
"default": "", | ||
"_adapt": { | ||
"translatable": true | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.