Skip to content

Commit

Permalink
Add support for encoding schema as tag:
Browse files Browse the repository at this point in the history
  • Loading branch information
ketozhang committed Nov 17, 2024
1 parent 85719e2 commit 343df24
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions asdf_pydantic/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class MyModel(AsdfPydanticModel):
]
"""

from typing import Optional
from typing import Literal, Optional

from pydantic import WithJsonSchema
from pydantic.json_schema import GenerateJsonSchema
Expand Down Expand Up @@ -98,6 +98,13 @@ def __init__(self, asdf_schema: dict, **kwargs):
super().__init__(asdf_schema, **kwargs)


def AsdfTag(tag: str, mode: Literal["auto", "ref", "tag"] = "auto") -> WithAsdfSchema:
if mode == "auto":
parsed_mode = "tag" if tag.startswith("tag") else "ref"
else:
parsed_mode = mode

def AsdfTag(tag: str) -> WithAsdfSchema:
return WithAsdfSchema({"$ref": tag})
if parsed_mode == "tag":
return WithAsdfSchema({"tag": tag})
else:
return WithAsdfSchema({"$ref": tag})

0 comments on commit 343df24

Please sign in to comment.