persona-community-5/.pnpm-store/v3/files/28/b065a8a4882a9b74a740a38648d5858ece8ab6a847435096b55a90609aa7b2fb688f02b095d4ea48b39dcde036ce7bf45bcf909778c77661ba01a2a9714b87
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

26 lines
620 B
Plaintext

import type {Vocabulary} from "../types"
export const metadataVocabulary: Vocabulary = [
"title",
"description",
"default",
"deprecated",
/**
* readOnly/writeOnly are handled as validation keywords when OAS context is provided.
* Keeping them here would register them as annotation-only metadata and would
* prevent the context-aware validation behavior.
*
* @see ./validation/readOnly.ts
* @see ./validation/writeOnly.ts
*/
// "readOnly",
// "writeOnly",
"examples",
]
export const contentVocabulary: Vocabulary = [
"contentMediaType",
"contentEncoding",
"contentSchema",
]