mirror of
https://github.com/containers/podman.git
synced 2026-07-10 23:35:04 -04:00
21 lines
458 B
Go
21 lines
458 B
Go
// SPDX-FileCopyrightText: Copyright 2015-2025 go-swagger maintainers
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package spec
|
|
|
|
import (
|
|
"embed"
|
|
"path"
|
|
)
|
|
|
|
//go:embed schemas/*.json schemas/*/*.json
|
|
var assets embed.FS
|
|
|
|
func jsonschemaDraft04JSONBytes() ([]byte, error) {
|
|
return assets.ReadFile(path.Join("schemas", "jsonschema-draft-04.json"))
|
|
}
|
|
|
|
func v2SchemaJSONBytes() ([]byte, error) {
|
|
return assets.ReadFile(path.Join("schemas", "v2", "schema.json"))
|
|
}
|