mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 21:49:31 +08:00
16 lines
274 B
Text
16 lines
274 B
Text
import type {Vocabulary} from "../../types"
|
|
import idKeyword from "./id"
|
|
import refKeyword from "./ref"
|
|
|
|
const core: Vocabulary = [
|
|
"$schema",
|
|
"$id",
|
|
"$defs",
|
|
"$vocabulary",
|
|
{keyword: "$comment"},
|
|
"definitions",
|
|
idKeyword,
|
|
refKeyword,
|
|
]
|
|
|
|
export default core
|