schema-generator
schema-generator copied to clipboard
PHP Model Scaffolding from Schema.org and other RDF vocabularies
Instead of using a configuration file, it could be great to have an interactive mode, like Symfony Maker does.
The Schema Generator could use a GraphQL schema as input, like the OpenAPI one.
**Description** Converting properties with the range rdfs:literal as strings **How to reproduce** When importing a vocabulary using rdf:literal to define data properties, those types are not recognized. I don't know...
Example: ``` User: guessFrom: "Person" properties: email: { unique: true, nullable: false } email2: { nullable: false, guessFrom: "email" } ``` The `guessFrom` option is not recognized for the field...
**Description** Relying on this library would reduce a lot of boilerplate code.
The Documentation tells me that I can use predefined Enumerations by schema.org, but what about custom ones? Did I miss the something or do I have to create the php...
The title really says it all. When you put ORM-mapping information AND validation rules in the entity using annotations the entity file can become rather big and more difficult to...
Right now if I have this `schema.yml` ```yaml types: Thing: properties: name: ~ Person: properties: familyName: ~ Country: parent: false embeddable: true properties: address: { range: "Text" } PostalAddress: parent:...
If my `schema.yml` says this: ```yaml Product: parent: false properties: name: { nullable: false } ``` Then I would love it if my generated `Product.php` then contains a constructor function...