Git Product home page Git Product logo

Comments (7)

gregsdennis avatar gregsdennis commented on July 18, 2024

There's an example in the documentation.

https://docs.json-everything.net/schema/examples/generator/

from json-everything.

kostyrin avatar kostyrin commented on July 18, 2024

formats.date and formats.datetime don't work for these formats

from json-everything.

gregsdennis avatar gregsdennis commented on July 18, 2024

Please see
dotnet/runtime#85545

You may need to use pattern instead.

format is an annotation anyway. It doesn't validate.

from json-everything.

kostyrin avatar kostyrin commented on July 18, 2024

I got this: The string value is not a match for the indicated regular expression
when I have date like 2023-06-15T13:45:30 and this schema generator

internal class DateTimeSchemaGenerator : ISchemaGenerator
{
    public bool Handles(Type type) => type == typeof(DateTime) 
                                   || type == typeof(DateTimeOffset)
                                   || type == typeof(DateOnly)
                                   || Nullable.GetUnderlyingType(type) == typeof(DateTime)
                                   || Nullable.GetUnderlyingType(type) == typeof(DateTimeOffset)
                                   || Nullable.GetUnderlyingType(type) == typeof(DateOnly);

    public void AddConstraints(SchemaGenerationContextBase context)
    {
        context.Intents.Add(new TypeIntent(SchemaValueType.String | SchemaValueType.Object));
        context.Intents.Add(new PatternIntent(@"^(?:(\d{4}-\d{2}-\d{2})([Tt]|)(\d{2}:\d{2}:\d{2}))$"));
        context.Intents.Add(new PatternIntent(@"^(?:(\d{4}-\d{2}-\d{2}))$"));
    }
}

I think nice to have possibility extend Formats in case
https://github.com/gregsdennis/json-everything/blob/master/JsonSchema/Formats.cs#L265
like Register a new format for DateTime.

from json-everything.

gregsdennis avatar gregsdennis commented on July 18, 2024

like Register a new format for DateTime

Please, read the documentation.

https://docs.json-everything.net/schema/basics/#schema-format

"New formats must be registered via the Formats.Register() static method. This method will overwrite any existing registration for that format, so this can be used to override the default behavior for known formats."

from json-everything.

kostyrin avatar kostyrin commented on July 18, 2024

I mean to have any needed format like CheckDateFormat(node, "yyyy-MM-ddTHH:mm:ss"); or extend it in SchemaGenerator

from json-everything.

gregsdennis avatar gregsdennis commented on July 18, 2024

I'm not going to do your work for you. You have all of the pieces you need:

  • How to add custom formats (including overwriting existing formats). This applies to validation.
  • How to add custom generators. This applies to creating schemas.

Moreover, all of this information is included in the documentation and has been for a long time.

from json-everything.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.