├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── LICENSE ├── README.md ├── composer.json ├── phpunit.xml ├── psalm.xml ├── src ├── Attribute │ ├── Deprecated.php │ ├── DerivedType.php │ ├── Description.php │ ├── Discriminator.php │ ├── Exclude.php │ ├── Format.php │ ├── Key.php │ └── Nullable.php ├── Builder.php ├── Console │ └── ParseCommand.php ├── ContentType.php ├── Definitions.php ├── DefinitionsInterface.php ├── Exception │ ├── GeneratorException.php │ ├── InvalidSchemaException.php │ ├── MappingException.php │ ├── ParserException.php │ ├── SchemaException.php │ ├── TransformerException.php │ ├── TraverserException.php │ ├── TypeNotFoundException.php │ ├── UnknownRootException.php │ ├── UnknownTypeException.php │ └── ValidationException.php ├── Format.php ├── Generator │ ├── CSharp.php │ ├── Code │ │ ├── Arguments.php │ │ ├── Chunks.php │ │ ├── Name.php │ │ └── Property.php │ ├── CodeGeneratorAbstract.php │ ├── Config.php │ ├── FileAwareInterface.php │ ├── Go.php │ ├── GraphQL.php │ ├── Html.php │ ├── Java.php │ ├── JsonSchema.php │ ├── Kotlin.php │ ├── Markdown.php │ ├── MarkupAbstract.php │ ├── Normalizer │ │ ├── CSharp.php │ │ ├── DefaultNormalizer.php │ │ ├── Go.php │ │ ├── GraphQL.php │ │ ├── Java.php │ │ ├── NormalizerAbstract.php │ │ ├── NormalizerInterface.php │ │ ├── Php.php │ │ ├── Python.php │ │ ├── Ruby.php │ │ ├── Rust.php │ │ ├── Swift.php │ │ ├── TypeScript.php │ │ └── VisualBasic.php │ ├── NormalizerAwareInterface.php │ ├── Php.php │ ├── Protobuf.php │ ├── Python.php │ ├── Ruby.php │ ├── Rust.php │ ├── Swift.php │ ├── Type │ │ ├── CSharp.php │ │ ├── GeneratorAbstract.php │ │ ├── GeneratorInterface.php │ │ ├── Go.php │ │ ├── GraphQL.php │ │ ├── Html.php │ │ ├── Java.php │ │ ├── Kotlin.php │ │ ├── Markdown.php │ │ ├── MarkupAbstract.php │ │ ├── Php.php │ │ ├── Protobuf.php │ │ ├── Python.php │ │ ├── Ruby.php │ │ ├── Rust.php │ │ ├── Swift.php │ │ ├── TypeScript.php │ │ └── VisualBasic.php │ ├── TypeAwareInterface.php │ ├── TypeSchema.php │ ├── TypeScript.php │ └── VisualBasic.php ├── GeneratorFactory.php ├── GeneratorInterface.php ├── Inspector │ ├── ChangelogGenerator.php │ ├── Hash.php │ ├── SemVer.php │ └── SemVerLifter.php ├── ObjectMapper.php ├── Parser │ ├── Context │ │ ├── FilesystemContext.php │ │ └── NamespaceContext.php │ ├── ContextInterface.php │ ├── Documentor.php │ ├── File.php │ ├── Http.php │ ├── Popo.php │ ├── Popo │ │ ├── Dumper.php │ │ ├── ReflectionReader.php │ │ ├── Resolver │ │ │ ├── Composite.php │ │ │ ├── Documentor.php │ │ │ └── Native.php │ │ ├── ResolverInterface.php │ │ └── TypeNameBuilder.php │ ├── SchemaClass.php │ ├── TypeHub.php │ ├── TypeSchema.php │ └── TypeSchema │ │ └── BCLayer.php ├── ParserInterface.php ├── Schema.php ├── SchemaAbstract.php ├── SchemaInterface.php ├── SchemaManager.php ├── SchemaManagerInterface.php ├── SchemaResolver.php ├── SchemaSource.php ├── SchemaTraverser.php ├── Transformer │ └── JsonSchema.php ├── TransformerInterface.php ├── Type.php ├── Type │ ├── AnyPropertyType.php │ ├── ArrayDefinitionType.php │ ├── ArrayPropertyType.php │ ├── ArrayTypeInterface.php │ ├── BooleanPropertyType.php │ ├── CollectionDefinitionType.php │ ├── CollectionPropertyType.php │ ├── CollectionTypeInterface.php │ ├── DefinitionTypeAbstract.php │ ├── Enum │ │ ├── DefinitionType.php │ │ └── PropertyType.php │ ├── Factory │ │ ├── DefinitionTypeFactory.php │ │ └── PropertyTypeFactory.php │ ├── GenericPropertyType.php │ ├── IntegerPropertyType.php │ ├── MapDefinitionType.php │ ├── MapPropertyType.php │ ├── MapTypeInterface.php │ ├── NumberPropertyType.php │ ├── PropertyTypeAbstract.php │ ├── ReferencePropertyType.php │ ├── ScalarPropertyType.php │ ├── StringPropertyType.php │ └── StructDefinitionType.php ├── TypeFactory.php ├── TypeInterface.php ├── TypeUtil.php ├── Validation │ ├── Field.php │ ├── Validator.php │ └── ValidatorInterface.php ├── ValidatorInterface.php ├── Visitor │ ├── NullVisitor.php │ └── TypeVisitor.php └── VisitorInterface.php └── tests ├── BuilderTest.php ├── Console ├── ParseCommandTest.php └── resource │ ├── html.htm │ ├── jsonschema.json │ ├── markdown.md │ ├── php.php │ └── protobuf.proto ├── ContentTypeTest.php ├── Generator ├── CSharpTest.php ├── ChunksTest.php ├── ConfigTest.php ├── GeneratorTestCase.php ├── GoTest.php ├── GraphQLTest.php ├── HtmlTest.php ├── JavaTest.php ├── JsonSchemaTest.php ├── KotlinTest.php ├── MarkdownTest.php ├── PhpTest.php ├── ProtobufTest.php ├── PythonTest.php ├── Result │ └── empty ├── RubyTest.php ├── RustTest.php ├── SwiftTest.php ├── TypeSchemaTest.php ├── TypeScriptTest.php ├── VisualBasicTest.php └── resource │ ├── csharp │ ├── complex │ │ ├── AnyPropertyType.cs │ │ ├── Argument.cs │ │ ├── ArrayDefinitionType.cs │ │ ├── ArrayPropertyType.cs │ │ ├── BooleanPropertyType.cs │ │ ├── CollectionDefinitionType.cs │ │ ├── CollectionPropertyType.cs │ │ ├── DefinitionType.cs │ │ ├── GenericPropertyType.cs │ │ ├── IntegerPropertyType.cs │ │ ├── MapDefinitionType.cs │ │ ├── MapPropertyType.cs │ │ ├── NumberPropertyType.cs │ │ ├── Operation.cs │ │ ├── PropertyType.cs │ │ ├── ReferencePropertyType.cs │ │ ├── Response.cs │ │ ├── ScalarPropertyType.cs │ │ ├── Security.cs │ │ ├── SecurityApiKey.cs │ │ ├── SecurityHttpBasic.cs │ │ ├── SecurityHttpBearer.cs │ │ ├── SecurityOAuth.cs │ │ ├── StringPropertyType.cs │ │ ├── StructDefinitionType.cs │ │ ├── TypeAPI.cs │ │ └── TypeSchema.cs │ ├── default │ │ ├── Author.cs │ │ ├── Location.cs │ │ ├── Meta.cs │ │ └── News.cs │ ├── import │ │ ├── Import.cs │ │ └── MyMap.cs │ ├── namespace │ │ ├── Import.cs │ │ └── MyMap.cs │ └── oop │ │ ├── HumanMap.cs │ │ ├── HumanType.cs │ │ ├── Map.cs │ │ ├── RootSchema.cs │ │ ├── Student.cs │ │ └── StudentMap.cs │ ├── go │ ├── complex │ │ ├── any_property_type.go │ │ ├── argument.go │ │ ├── array_definition_type.go │ │ ├── array_property_type.go │ │ ├── boolean_property_type.go │ │ ├── collection_definition_type.go │ │ ├── collection_property_type.go │ │ ├── definition_type.go │ │ ├── generic_property_type.go │ │ ├── integer_property_type.go │ │ ├── map_definition_type.go │ │ ├── map_property_type.go │ │ ├── number_property_type.go │ │ ├── operation.go │ │ ├── property_type.go │ │ ├── reference_property_type.go │ │ ├── response.go │ │ ├── scalar_property_type.go │ │ ├── security.go │ │ ├── security_api_key.go │ │ ├── security_http_basic.go │ │ ├── security_http_bearer.go │ │ ├── security_o_auth.go │ │ ├── string_property_type.go │ │ ├── struct_definition_type.go │ │ ├── type_api.go │ │ └── type_schema.go │ ├── default │ │ ├── author.go │ │ ├── location.go │ │ ├── meta.go │ │ └── news.go │ ├── import │ │ ├── import.go │ │ └── my_map.go │ ├── namespace │ │ ├── import.go │ │ └── my_map.go │ ├── oop │ │ ├── human_map.go │ │ ├── human_type.go │ │ ├── map.go │ │ ├── root_schema.go │ │ ├── student.go │ │ └── student_map.go │ └── test │ │ └── backend_test_.go │ ├── graphql │ └── graphql.graphql │ ├── html │ ├── html.htm │ ├── html_complex.htm │ └── html_oop.htm │ ├── java │ ├── complex │ │ ├── AnyPropertyType.java │ │ ├── Argument.java │ │ ├── ArrayDefinitionType.java │ │ ├── ArrayPropertyType.java │ │ ├── BooleanPropertyType.java │ │ ├── CollectionDefinitionType.java │ │ ├── CollectionPropertyType.java │ │ ├── DefinitionType.java │ │ ├── GenericPropertyType.java │ │ ├── IntegerPropertyType.java │ │ ├── MapDefinitionType.java │ │ ├── MapPropertyType.java │ │ ├── NumberPropertyType.java │ │ ├── Operation.java │ │ ├── PropertyType.java │ │ ├── ReferencePropertyType.java │ │ ├── Response.java │ │ ├── ScalarPropertyType.java │ │ ├── Security.java │ │ ├── SecurityApiKey.java │ │ ├── SecurityHttpBasic.java │ │ ├── SecurityHttpBearer.java │ │ ├── SecurityOAuth.java │ │ ├── StringPropertyType.java │ │ ├── StructDefinitionType.java │ │ ├── TypeAPI.java │ │ └── TypeSchema.java │ ├── default │ │ ├── Author.java │ │ ├── Location.java │ │ ├── Meta.java │ │ └── News.java │ ├── import │ │ ├── Import.java │ │ └── MyMap.java │ ├── namespace │ │ ├── Import.java │ │ └── MyMap.java │ └── oop │ │ ├── HumanMap.java │ │ ├── HumanType.java │ │ ├── Map.java │ │ ├── RootSchema.java │ │ ├── Student.java │ │ └── StudentMap.java │ ├── jsonschema │ ├── jsonschema.json │ ├── jsonschema_complex.json │ ├── jsonschema_import.json │ ├── jsonschema_oop.json │ └── jsonschema_resolve_refs.json │ ├── kotlin │ ├── complex │ │ ├── AnyPropertyType.kt │ │ ├── Argument.kt │ │ ├── ArrayDefinitionType.kt │ │ ├── ArrayPropertyType.kt │ │ ├── BooleanPropertyType.kt │ │ ├── CollectionDefinitionType.kt │ │ ├── CollectionPropertyType.kt │ │ ├── DefinitionType.kt │ │ ├── GenericPropertyType.kt │ │ ├── IntegerPropertyType.kt │ │ ├── MapDefinitionType.kt │ │ ├── MapPropertyType.kt │ │ ├── NumberPropertyType.kt │ │ ├── Operation.kt │ │ ├── PropertyType.kt │ │ ├── ReferencePropertyType.kt │ │ ├── Response.kt │ │ ├── ScalarPropertyType.kt │ │ ├── Security.kt │ │ ├── SecurityApiKey.kt │ │ ├── SecurityHttpBasic.kt │ │ ├── SecurityHttpBearer.kt │ │ ├── SecurityOAuth.kt │ │ ├── StringPropertyType.kt │ │ ├── StructDefinitionType.kt │ │ ├── TypeAPI.kt │ │ └── TypeSchema.kt │ ├── default │ │ ├── Author.kt │ │ ├── Location.kt │ │ ├── Meta.kt │ │ └── News.kt │ ├── import │ │ ├── Import.kt │ │ └── MyMap.kt │ ├── namespace │ │ ├── Import.kt │ │ └── MyMap.kt │ └── oop │ │ ├── HumanMap.kt │ │ ├── HumanType.kt │ │ ├── Map.kt │ │ ├── RootSchema.kt │ │ ├── Student.kt │ │ └── StudentMap.kt │ ├── markdown │ ├── markdown.md │ └── markdown_complex.md │ ├── php │ ├── complex │ │ ├── AnyPropertyType.php │ │ ├── Argument.php │ │ ├── ArrayDefinitionType.php │ │ ├── ArrayPropertyType.php │ │ ├── BooleanPropertyType.php │ │ ├── CollectionDefinitionType.php │ │ ├── CollectionPropertyType.php │ │ ├── DefinitionType.php │ │ ├── GenericPropertyType.php │ │ ├── IntegerPropertyType.php │ │ ├── MapDefinitionType.php │ │ ├── MapPropertyType.php │ │ ├── NumberPropertyType.php │ │ ├── Operation.php │ │ ├── PropertyType.php │ │ ├── ReferencePropertyType.php │ │ ├── Response.php │ │ ├── ScalarPropertyType.php │ │ ├── Security.php │ │ ├── SecurityApiKey.php │ │ ├── SecurityHttpBasic.php │ │ ├── SecurityHttpBearer.php │ │ ├── SecurityOAuth.php │ │ ├── StringPropertyType.php │ │ ├── StructDefinitionType.php │ │ ├── TypeAPI.php │ │ └── TypeSchema.php │ ├── default │ │ ├── Author.php │ │ ├── Location.php │ │ ├── Meta.php │ │ └── News.php │ ├── import │ │ ├── Import.php │ │ └── MyMap.php │ ├── namespace │ │ ├── Import.php │ │ └── MyMap.php │ └── oop │ │ ├── HumanMap.php │ │ ├── HumanType.php │ │ ├── Map.php │ │ ├── RootSchema.php │ │ ├── Student.php │ │ └── StudentMap.php │ ├── protobuf │ ├── protobuf.txt │ └── protobuf_oop.txt │ ├── python │ ├── complex │ │ ├── any_property_type.py │ │ ├── argument.py │ │ ├── array_definition_type.py │ │ ├── array_property_type.py │ │ ├── boolean_property_type.py │ │ ├── collection_definition_type.py │ │ ├── collection_property_type.py │ │ ├── definition_type.py │ │ ├── generic_property_type.py │ │ ├── integer_property_type.py │ │ ├── map_definition_type.py │ │ ├── map_property_type.py │ │ ├── number_property_type.py │ │ ├── operation.py │ │ ├── property_type.py │ │ ├── reference_property_type.py │ │ ├── response.py │ │ ├── scalar_property_type.py │ │ ├── security.py │ │ ├── security_api_key.py │ │ ├── security_http_basic.py │ │ ├── security_http_bearer.py │ │ ├── security_o_auth.py │ │ ├── string_property_type.py │ │ ├── struct_definition_type.py │ │ ├── type_api.py │ │ └── type_schema.py │ ├── default │ │ ├── author.py │ │ ├── location.py │ │ ├── meta.py │ │ └── news.py │ ├── import │ │ ├── import.py │ │ └── my_map.py │ ├── namespace │ │ ├── import.py │ │ └── my_map.py │ ├── oop │ │ ├── human_map.py │ │ ├── human_type.py │ │ ├── map.py │ │ ├── root_schema.py │ │ ├── student.py │ │ └── student_map.py │ └── union │ │ ├── common_form_container.py │ │ ├── common_form_element.py │ │ ├── common_form_element_input.py │ │ ├── common_form_element_select.py │ │ ├── common_form_element_select_option.py │ │ ├── common_form_element_tag.py │ │ └── common_form_element_text_area.py │ ├── ruby │ ├── complex │ │ ├── any_property_type.rb │ │ ├── argument.rb │ │ ├── array_definition_type.rb │ │ ├── array_property_type.rb │ │ ├── boolean_property_type.rb │ │ ├── collection_definition_type.rb │ │ ├── collection_property_type.rb │ │ ├── definition_type.rb │ │ ├── generic_property_type.rb │ │ ├── integer_property_type.rb │ │ ├── map_definition_type.rb │ │ ├── map_property_type.rb │ │ ├── number_property_type.rb │ │ ├── operation.rb │ │ ├── property_type.rb │ │ ├── reference_property_type.rb │ │ ├── response.rb │ │ ├── scalar_property_type.rb │ │ ├── security.rb │ │ ├── security_api_key.rb │ │ ├── security_http_basic.rb │ │ ├── security_http_bearer.rb │ │ ├── security_o_auth.rb │ │ ├── string_property_type.rb │ │ ├── struct_definition_type.rb │ │ ├── type_api.rb │ │ └── type_schema.rb │ ├── default │ │ ├── author.rb │ │ ├── location.rb │ │ └── news.rb │ ├── import │ │ ├── import.rb │ │ └── my_map.rb │ ├── namespace │ │ ├── import.rb │ │ └── my_map.rb │ └── oop │ │ ├── human_map.rb │ │ ├── human_type.rb │ │ ├── map.rb │ │ ├── root_schema.rb │ │ ├── student.rb │ │ └── student_map.rb │ ├── rust │ ├── complex │ │ ├── any_property_type.rs │ │ ├── argument.rs │ │ ├── array_definition_type.rs │ │ ├── array_property_type.rs │ │ ├── boolean_property_type.rs │ │ ├── collection_definition_type.rs │ │ ├── collection_property_type.rs │ │ ├── definition_type.rs │ │ ├── generic_property_type.rs │ │ ├── integer_property_type.rs │ │ ├── map_definition_type.rs │ │ ├── map_property_type.rs │ │ ├── number_property_type.rs │ │ ├── operation.rs │ │ ├── property_type.rs │ │ ├── reference_property_type.rs │ │ ├── response.rs │ │ ├── scalar_property_type.rs │ │ ├── security.rs │ │ ├── security_api_key.rs │ │ ├── security_http_basic.rs │ │ ├── security_http_bearer.rs │ │ ├── security_o_auth.rs │ │ ├── string_property_type.rs │ │ ├── struct_definition_type.rs │ │ ├── type_api.rs │ │ └── type_schema.rs │ ├── default │ │ ├── author.rs │ │ ├── location.rs │ │ ├── meta.rs │ │ └── news.rs │ ├── import │ │ ├── import.rs │ │ └── my_map.rs │ ├── namespace │ │ ├── import.rs │ │ └── my_map.rs │ └── oop │ │ ├── human_map.rs │ │ ├── human_type.rs │ │ ├── map.rs │ │ ├── root_schema.rs │ │ ├── student.rs │ │ └── student_map.rs │ ├── source_import.json │ ├── source_oop.json │ ├── source_test.json │ ├── source_typeschema.json │ ├── source_union.json │ ├── swift │ ├── complex │ │ ├── AnyPropertyType.swift │ │ ├── Argument.swift │ │ ├── ArrayDefinitionType.swift │ │ ├── ArrayPropertyType.swift │ │ ├── BooleanPropertyType.swift │ │ ├── CollectionDefinitionType.swift │ │ ├── CollectionPropertyType.swift │ │ ├── DefinitionType.swift │ │ ├── GenericPropertyType.swift │ │ ├── IntegerPropertyType.swift │ │ ├── MapDefinitionType.swift │ │ ├── MapPropertyType.swift │ │ ├── NumberPropertyType.swift │ │ ├── Operation.swift │ │ ├── PropertyType.swift │ │ ├── ReferencePropertyType.swift │ │ ├── Response.swift │ │ ├── ScalarPropertyType.swift │ │ ├── Security.swift │ │ ├── SecurityApiKey.swift │ │ ├── SecurityHttpBasic.swift │ │ ├── SecurityHttpBearer.swift │ │ ├── SecurityOAuth.swift │ │ ├── StringPropertyType.swift │ │ ├── StructDefinitionType.swift │ │ ├── TypeAPI.swift │ │ └── TypeSchema.swift │ ├── default │ │ ├── Author.swift │ │ ├── Location.swift │ │ ├── Meta.swift │ │ └── News.swift │ ├── import │ │ ├── Import.swift │ │ └── MyMap.swift │ ├── namespace │ │ ├── Import.swift │ │ └── MyMap.swift │ └── oop │ │ ├── HumanMap.swift │ │ ├── HumanType.swift │ │ ├── Map.swift │ │ ├── RootSchema.swift │ │ ├── Student.swift │ │ └── StudentMap.swift │ ├── typeschema │ ├── typeschema.json │ ├── typeschema_complex.json │ ├── typeschema_import.json │ └── typeschema_oop.json │ ├── typescript │ ├── complex │ │ ├── AnyPropertyType.ts │ │ ├── Argument.ts │ │ ├── ArrayDefinitionType.ts │ │ ├── ArrayPropertyType.ts │ │ ├── BooleanPropertyType.ts │ │ ├── CollectionDefinitionType.ts │ │ ├── CollectionPropertyType.ts │ │ ├── DefinitionType.ts │ │ ├── GenericPropertyType.ts │ │ ├── IntegerPropertyType.ts │ │ ├── MapDefinitionType.ts │ │ ├── MapPropertyType.ts │ │ ├── NumberPropertyType.ts │ │ ├── Operation.ts │ │ ├── PropertyType.ts │ │ ├── ReferencePropertyType.ts │ │ ├── Response.ts │ │ ├── ScalarPropertyType.ts │ │ ├── Security.ts │ │ ├── SecurityApiKey.ts │ │ ├── SecurityHttpBasic.ts │ │ ├── SecurityHttpBearer.ts │ │ ├── SecurityOAuth.ts │ │ ├── StringPropertyType.ts │ │ ├── StructDefinitionType.ts │ │ ├── TypeAPI.ts │ │ └── TypeSchema.ts │ ├── default │ │ ├── Author.ts │ │ ├── Location.ts │ │ ├── Meta.ts │ │ └── News.ts │ ├── import │ │ ├── Import.ts │ │ └── MyMap.ts │ ├── namespace │ │ ├── Import.ts │ │ └── MyMap.ts │ └── oop │ │ ├── HumanMap.ts │ │ ├── HumanType.ts │ │ ├── Map.ts │ │ ├── RootSchema.ts │ │ ├── Student.ts │ │ └── StudentMap.ts │ └── visualbasic │ ├── complex │ ├── AnyPropertyType.vb │ ├── Argument.vb │ ├── ArrayDefinitionType.vb │ ├── ArrayPropertyType.vb │ ├── BooleanPropertyType.vb │ ├── CollectionDefinitionType.vb │ ├── CollectionPropertyType.vb │ ├── DefinitionType.vb │ ├── GenericPropertyType.vb │ ├── IntegerPropertyType.vb │ ├── MapDefinitionType.vb │ ├── MapPropertyType.vb │ ├── NumberPropertyType.vb │ ├── Operation.vb │ ├── PropertyType.vb │ ├── ReferencePropertyType.vb │ ├── Response.vb │ ├── ScalarPropertyType.vb │ ├── Security.vb │ ├── SecurityApiKey.vb │ ├── SecurityHttpBasic.vb │ ├── SecurityHttpBearer.vb │ ├── SecurityOAuth.vb │ ├── StringPropertyType.vb │ ├── StructDefinitionType.vb │ ├── TypeAPI.vb │ └── TypeSchema.vb │ ├── default │ ├── Author.vb │ ├── Location.vb │ ├── Meta.vb │ └── News.vb │ ├── import │ ├── Import.vb │ └── MyMap.vb │ ├── namespace │ ├── Import.vb │ └── MyMap.vb │ └── oop │ ├── HumanMap.vb │ ├── HumanType.vb │ ├── Map.vb │ ├── RootSchema.vb │ ├── Student.vb │ └── StudentMap.vb ├── Inspector ├── ChangelogGeneratorTest.php ├── HashTest.php ├── SemVerElevatorTest.php └── SemVerTest.php ├── ObjectMapperTest.php ├── Parser ├── DocumentorTest.php ├── ParserTestCase.php ├── Popo │ ├── ArrayInArray.php │ ├── ArrayList.php │ ├── Attribute │ │ ├── Author.php │ │ ├── Location.php │ │ ├── Meta.php │ │ └── News.php │ ├── DumperTest.php │ ├── Form_Container.php │ ├── Form_Element.php │ ├── Form_Element_Input.php │ ├── Form_Element_Select.php │ ├── Form_Element_Tag.php │ ├── Form_Element_TextArea.php │ ├── HashMap.php │ ├── TypeNameTest.php │ ├── expect.json │ └── expect_iterable.json ├── PopoTest.php ├── TypeSchema │ ├── form_container.json │ ├── test_schema.json │ ├── test_schema_external.json │ ├── test_schema_import.json │ ├── test_schema_typehub.json │ └── typeschema.json └── TypeSchemaTest.php ├── Schema ├── SchemaA.php ├── SchemaB.php └── SchemaCommon.php ├── SchemaAbstractTest.php ├── SchemaManagerTest.php ├── SchemaResolverTest.php ├── SchemaSourceTest.php ├── SchemaTestCase.php ├── SchemaTraverser └── expected.json ├── SchemaTraverserTest.php ├── TestSchema.php ├── Transformer ├── JsonSchemaTest.php └── jsonschema │ ├── actual │ ├── 00_jsonschema.json │ ├── 01_jsonschema.json │ ├── 02_jsonschema.json │ ├── 03_jsonschema.json │ └── 04_jsonschema.json │ └── expect │ ├── 00_jsonschema.json │ ├── 01_jsonschema.json │ ├── 02_jsonschema.json │ ├── 03_jsonschema.json │ └── 04_jsonschema.json ├── Type └── Factory │ ├── DefinitionTypeFactoryTest.php │ └── PropertyTypeFactoryTest.php ├── Validation └── ValidatorTest.php └── Visitor ├── TypeVisitor ├── ArrayAccessClass.php ├── PopoClass.php ├── RecordClass.php └── StdClass.php └── TypeVisitorTest.php /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/composer.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/phpunit.xml -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/Attribute/Deprecated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Attribute/Deprecated.php -------------------------------------------------------------------------------- /src/Attribute/DerivedType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Attribute/DerivedType.php -------------------------------------------------------------------------------- /src/Attribute/Description.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Attribute/Description.php -------------------------------------------------------------------------------- /src/Attribute/Discriminator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Attribute/Discriminator.php -------------------------------------------------------------------------------- /src/Attribute/Exclude.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Attribute/Exclude.php -------------------------------------------------------------------------------- /src/Attribute/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Attribute/Format.php -------------------------------------------------------------------------------- /src/Attribute/Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Attribute/Key.php -------------------------------------------------------------------------------- /src/Attribute/Nullable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Attribute/Nullable.php -------------------------------------------------------------------------------- /src/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Builder.php -------------------------------------------------------------------------------- /src/Console/ParseCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Console/ParseCommand.php -------------------------------------------------------------------------------- /src/ContentType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/ContentType.php -------------------------------------------------------------------------------- /src/Definitions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Definitions.php -------------------------------------------------------------------------------- /src/DefinitionsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/DefinitionsInterface.php -------------------------------------------------------------------------------- /src/Exception/GeneratorException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Exception/GeneratorException.php -------------------------------------------------------------------------------- /src/Exception/InvalidSchemaException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Exception/InvalidSchemaException.php -------------------------------------------------------------------------------- /src/Exception/MappingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Exception/MappingException.php -------------------------------------------------------------------------------- /src/Exception/ParserException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Exception/ParserException.php -------------------------------------------------------------------------------- /src/Exception/SchemaException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Exception/SchemaException.php -------------------------------------------------------------------------------- /src/Exception/TransformerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Exception/TransformerException.php -------------------------------------------------------------------------------- /src/Exception/TraverserException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Exception/TraverserException.php -------------------------------------------------------------------------------- /src/Exception/TypeNotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Exception/TypeNotFoundException.php -------------------------------------------------------------------------------- /src/Exception/UnknownRootException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Exception/UnknownRootException.php -------------------------------------------------------------------------------- /src/Exception/UnknownTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Exception/UnknownTypeException.php -------------------------------------------------------------------------------- /src/Exception/ValidationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Exception/ValidationException.php -------------------------------------------------------------------------------- /src/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Format.php -------------------------------------------------------------------------------- /src/Generator/CSharp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/CSharp.php -------------------------------------------------------------------------------- /src/Generator/Code/Arguments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Code/Arguments.php -------------------------------------------------------------------------------- /src/Generator/Code/Chunks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Code/Chunks.php -------------------------------------------------------------------------------- /src/Generator/Code/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Code/Name.php -------------------------------------------------------------------------------- /src/Generator/Code/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Code/Property.php -------------------------------------------------------------------------------- /src/Generator/CodeGeneratorAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/CodeGeneratorAbstract.php -------------------------------------------------------------------------------- /src/Generator/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Config.php -------------------------------------------------------------------------------- /src/Generator/FileAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/FileAwareInterface.php -------------------------------------------------------------------------------- /src/Generator/Go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Go.php -------------------------------------------------------------------------------- /src/Generator/GraphQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/GraphQL.php -------------------------------------------------------------------------------- /src/Generator/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Html.php -------------------------------------------------------------------------------- /src/Generator/Java.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Java.php -------------------------------------------------------------------------------- /src/Generator/JsonSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/JsonSchema.php -------------------------------------------------------------------------------- /src/Generator/Kotlin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Kotlin.php -------------------------------------------------------------------------------- /src/Generator/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Markdown.php -------------------------------------------------------------------------------- /src/Generator/MarkupAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/MarkupAbstract.php -------------------------------------------------------------------------------- /src/Generator/Normalizer/CSharp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Normalizer/CSharp.php -------------------------------------------------------------------------------- /src/Generator/Normalizer/DefaultNormalizer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Normalizer/DefaultNormalizer.php -------------------------------------------------------------------------------- /src/Generator/Normalizer/Go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Normalizer/Go.php -------------------------------------------------------------------------------- /src/Generator/Normalizer/GraphQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Normalizer/GraphQL.php -------------------------------------------------------------------------------- /src/Generator/Normalizer/Java.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Normalizer/Java.php -------------------------------------------------------------------------------- /src/Generator/Normalizer/NormalizerAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Normalizer/NormalizerAbstract.php -------------------------------------------------------------------------------- /src/Generator/Normalizer/NormalizerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Normalizer/NormalizerInterface.php -------------------------------------------------------------------------------- /src/Generator/Normalizer/Php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Normalizer/Php.php -------------------------------------------------------------------------------- /src/Generator/Normalizer/Python.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Normalizer/Python.php -------------------------------------------------------------------------------- /src/Generator/Normalizer/Ruby.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Normalizer/Ruby.php -------------------------------------------------------------------------------- /src/Generator/Normalizer/Rust.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Normalizer/Rust.php -------------------------------------------------------------------------------- /src/Generator/Normalizer/Swift.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Normalizer/Swift.php -------------------------------------------------------------------------------- /src/Generator/Normalizer/TypeScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Normalizer/TypeScript.php -------------------------------------------------------------------------------- /src/Generator/Normalizer/VisualBasic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Normalizer/VisualBasic.php -------------------------------------------------------------------------------- /src/Generator/NormalizerAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/NormalizerAwareInterface.php -------------------------------------------------------------------------------- /src/Generator/Php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Php.php -------------------------------------------------------------------------------- /src/Generator/Protobuf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Protobuf.php -------------------------------------------------------------------------------- /src/Generator/Python.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Python.php -------------------------------------------------------------------------------- /src/Generator/Ruby.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Ruby.php -------------------------------------------------------------------------------- /src/Generator/Rust.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Rust.php -------------------------------------------------------------------------------- /src/Generator/Swift.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Swift.php -------------------------------------------------------------------------------- /src/Generator/Type/CSharp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/CSharp.php -------------------------------------------------------------------------------- /src/Generator/Type/GeneratorAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/GeneratorAbstract.php -------------------------------------------------------------------------------- /src/Generator/Type/GeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/GeneratorInterface.php -------------------------------------------------------------------------------- /src/Generator/Type/Go.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/Go.php -------------------------------------------------------------------------------- /src/Generator/Type/GraphQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/GraphQL.php -------------------------------------------------------------------------------- /src/Generator/Type/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/Html.php -------------------------------------------------------------------------------- /src/Generator/Type/Java.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/Java.php -------------------------------------------------------------------------------- /src/Generator/Type/Kotlin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/Kotlin.php -------------------------------------------------------------------------------- /src/Generator/Type/Markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/Markdown.php -------------------------------------------------------------------------------- /src/Generator/Type/MarkupAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/MarkupAbstract.php -------------------------------------------------------------------------------- /src/Generator/Type/Php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/Php.php -------------------------------------------------------------------------------- /src/Generator/Type/Protobuf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/Protobuf.php -------------------------------------------------------------------------------- /src/Generator/Type/Python.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/Python.php -------------------------------------------------------------------------------- /src/Generator/Type/Ruby.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/Ruby.php -------------------------------------------------------------------------------- /src/Generator/Type/Rust.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/Rust.php -------------------------------------------------------------------------------- /src/Generator/Type/Swift.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/Swift.php -------------------------------------------------------------------------------- /src/Generator/Type/TypeScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/TypeScript.php -------------------------------------------------------------------------------- /src/Generator/Type/VisualBasic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/Type/VisualBasic.php -------------------------------------------------------------------------------- /src/Generator/TypeAwareInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/TypeAwareInterface.php -------------------------------------------------------------------------------- /src/Generator/TypeSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/TypeSchema.php -------------------------------------------------------------------------------- /src/Generator/TypeScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/TypeScript.php -------------------------------------------------------------------------------- /src/Generator/VisualBasic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Generator/VisualBasic.php -------------------------------------------------------------------------------- /src/GeneratorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/GeneratorFactory.php -------------------------------------------------------------------------------- /src/GeneratorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/GeneratorInterface.php -------------------------------------------------------------------------------- /src/Inspector/ChangelogGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Inspector/ChangelogGenerator.php -------------------------------------------------------------------------------- /src/Inspector/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Inspector/Hash.php -------------------------------------------------------------------------------- /src/Inspector/SemVer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Inspector/SemVer.php -------------------------------------------------------------------------------- /src/Inspector/SemVerLifter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Inspector/SemVerLifter.php -------------------------------------------------------------------------------- /src/ObjectMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/ObjectMapper.php -------------------------------------------------------------------------------- /src/Parser/Context/FilesystemContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/Context/FilesystemContext.php -------------------------------------------------------------------------------- /src/Parser/Context/NamespaceContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/Context/NamespaceContext.php -------------------------------------------------------------------------------- /src/Parser/ContextInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/ContextInterface.php -------------------------------------------------------------------------------- /src/Parser/Documentor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/Documentor.php -------------------------------------------------------------------------------- /src/Parser/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/File.php -------------------------------------------------------------------------------- /src/Parser/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/Http.php -------------------------------------------------------------------------------- /src/Parser/Popo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/Popo.php -------------------------------------------------------------------------------- /src/Parser/Popo/Dumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/Popo/Dumper.php -------------------------------------------------------------------------------- /src/Parser/Popo/ReflectionReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/Popo/ReflectionReader.php -------------------------------------------------------------------------------- /src/Parser/Popo/Resolver/Composite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/Popo/Resolver/Composite.php -------------------------------------------------------------------------------- /src/Parser/Popo/Resolver/Documentor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/Popo/Resolver/Documentor.php -------------------------------------------------------------------------------- /src/Parser/Popo/Resolver/Native.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/Popo/Resolver/Native.php -------------------------------------------------------------------------------- /src/Parser/Popo/ResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/Popo/ResolverInterface.php -------------------------------------------------------------------------------- /src/Parser/Popo/TypeNameBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/Popo/TypeNameBuilder.php -------------------------------------------------------------------------------- /src/Parser/SchemaClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/SchemaClass.php -------------------------------------------------------------------------------- /src/Parser/TypeHub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/TypeHub.php -------------------------------------------------------------------------------- /src/Parser/TypeSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/TypeSchema.php -------------------------------------------------------------------------------- /src/Parser/TypeSchema/BCLayer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Parser/TypeSchema/BCLayer.php -------------------------------------------------------------------------------- /src/ParserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/ParserInterface.php -------------------------------------------------------------------------------- /src/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Schema.php -------------------------------------------------------------------------------- /src/SchemaAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/SchemaAbstract.php -------------------------------------------------------------------------------- /src/SchemaInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/SchemaInterface.php -------------------------------------------------------------------------------- /src/SchemaManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/SchemaManager.php -------------------------------------------------------------------------------- /src/SchemaManagerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/SchemaManagerInterface.php -------------------------------------------------------------------------------- /src/SchemaResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/SchemaResolver.php -------------------------------------------------------------------------------- /src/SchemaSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/SchemaSource.php -------------------------------------------------------------------------------- /src/SchemaTraverser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/SchemaTraverser.php -------------------------------------------------------------------------------- /src/Transformer/JsonSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Transformer/JsonSchema.php -------------------------------------------------------------------------------- /src/TransformerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/TransformerInterface.php -------------------------------------------------------------------------------- /src/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type.php -------------------------------------------------------------------------------- /src/Type/AnyPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/AnyPropertyType.php -------------------------------------------------------------------------------- /src/Type/ArrayDefinitionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/ArrayDefinitionType.php -------------------------------------------------------------------------------- /src/Type/ArrayPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/ArrayPropertyType.php -------------------------------------------------------------------------------- /src/Type/ArrayTypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/ArrayTypeInterface.php -------------------------------------------------------------------------------- /src/Type/BooleanPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/BooleanPropertyType.php -------------------------------------------------------------------------------- /src/Type/CollectionDefinitionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/CollectionDefinitionType.php -------------------------------------------------------------------------------- /src/Type/CollectionPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/CollectionPropertyType.php -------------------------------------------------------------------------------- /src/Type/CollectionTypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/CollectionTypeInterface.php -------------------------------------------------------------------------------- /src/Type/DefinitionTypeAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/DefinitionTypeAbstract.php -------------------------------------------------------------------------------- /src/Type/Enum/DefinitionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/Enum/DefinitionType.php -------------------------------------------------------------------------------- /src/Type/Enum/PropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/Enum/PropertyType.php -------------------------------------------------------------------------------- /src/Type/Factory/DefinitionTypeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/Factory/DefinitionTypeFactory.php -------------------------------------------------------------------------------- /src/Type/Factory/PropertyTypeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/Factory/PropertyTypeFactory.php -------------------------------------------------------------------------------- /src/Type/GenericPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/GenericPropertyType.php -------------------------------------------------------------------------------- /src/Type/IntegerPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/IntegerPropertyType.php -------------------------------------------------------------------------------- /src/Type/MapDefinitionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/MapDefinitionType.php -------------------------------------------------------------------------------- /src/Type/MapPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/MapPropertyType.php -------------------------------------------------------------------------------- /src/Type/MapTypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/MapTypeInterface.php -------------------------------------------------------------------------------- /src/Type/NumberPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/NumberPropertyType.php -------------------------------------------------------------------------------- /src/Type/PropertyTypeAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/PropertyTypeAbstract.php -------------------------------------------------------------------------------- /src/Type/ReferencePropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/ReferencePropertyType.php -------------------------------------------------------------------------------- /src/Type/ScalarPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/ScalarPropertyType.php -------------------------------------------------------------------------------- /src/Type/StringPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/StringPropertyType.php -------------------------------------------------------------------------------- /src/Type/StructDefinitionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Type/StructDefinitionType.php -------------------------------------------------------------------------------- /src/TypeFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/TypeFactory.php -------------------------------------------------------------------------------- /src/TypeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/TypeInterface.php -------------------------------------------------------------------------------- /src/TypeUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/TypeUtil.php -------------------------------------------------------------------------------- /src/Validation/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Validation/Field.php -------------------------------------------------------------------------------- /src/Validation/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Validation/Validator.php -------------------------------------------------------------------------------- /src/Validation/ValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Validation/ValidatorInterface.php -------------------------------------------------------------------------------- /src/ValidatorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/ValidatorInterface.php -------------------------------------------------------------------------------- /src/Visitor/NullVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Visitor/NullVisitor.php -------------------------------------------------------------------------------- /src/Visitor/TypeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/Visitor/TypeVisitor.php -------------------------------------------------------------------------------- /src/VisitorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/src/VisitorInterface.php -------------------------------------------------------------------------------- /tests/BuilderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/BuilderTest.php -------------------------------------------------------------------------------- /tests/Console/ParseCommandTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Console/ParseCommandTest.php -------------------------------------------------------------------------------- /tests/Console/resource/html.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Console/resource/html.htm -------------------------------------------------------------------------------- /tests/Console/resource/jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Console/resource/jsonschema.json -------------------------------------------------------------------------------- /tests/Console/resource/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Console/resource/markdown.md -------------------------------------------------------------------------------- /tests/Console/resource/php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Console/resource/php.php -------------------------------------------------------------------------------- /tests/Console/resource/protobuf.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Console/resource/protobuf.proto -------------------------------------------------------------------------------- /tests/ContentTypeTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/ContentTypeTest.php -------------------------------------------------------------------------------- /tests/Generator/CSharpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/CSharpTest.php -------------------------------------------------------------------------------- /tests/Generator/ChunksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/ChunksTest.php -------------------------------------------------------------------------------- /tests/Generator/ConfigTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/ConfigTest.php -------------------------------------------------------------------------------- /tests/Generator/GeneratorTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/GeneratorTestCase.php -------------------------------------------------------------------------------- /tests/Generator/GoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/GoTest.php -------------------------------------------------------------------------------- /tests/Generator/GraphQLTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/GraphQLTest.php -------------------------------------------------------------------------------- /tests/Generator/HtmlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/HtmlTest.php -------------------------------------------------------------------------------- /tests/Generator/JavaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/JavaTest.php -------------------------------------------------------------------------------- /tests/Generator/JsonSchemaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/JsonSchemaTest.php -------------------------------------------------------------------------------- /tests/Generator/KotlinTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/KotlinTest.php -------------------------------------------------------------------------------- /tests/Generator/MarkdownTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/MarkdownTest.php -------------------------------------------------------------------------------- /tests/Generator/PhpTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/PhpTest.php -------------------------------------------------------------------------------- /tests/Generator/ProtobufTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/ProtobufTest.php -------------------------------------------------------------------------------- /tests/Generator/PythonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/PythonTest.php -------------------------------------------------------------------------------- /tests/Generator/Result/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/Generator/RubyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/RubyTest.php -------------------------------------------------------------------------------- /tests/Generator/RustTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/RustTest.php -------------------------------------------------------------------------------- /tests/Generator/SwiftTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/SwiftTest.php -------------------------------------------------------------------------------- /tests/Generator/TypeSchemaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/TypeSchemaTest.php -------------------------------------------------------------------------------- /tests/Generator/TypeScriptTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/TypeScriptTest.php -------------------------------------------------------------------------------- /tests/Generator/VisualBasicTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/VisualBasicTest.php -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/AnyPropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/AnyPropertyType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/Argument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/Argument.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/ArrayDefinitionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/ArrayDefinitionType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/ArrayPropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/ArrayPropertyType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/BooleanPropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/BooleanPropertyType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/CollectionDefinitionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/CollectionDefinitionType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/CollectionPropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/CollectionPropertyType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/DefinitionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/DefinitionType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/GenericPropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/GenericPropertyType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/IntegerPropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/IntegerPropertyType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/MapDefinitionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/MapDefinitionType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/MapPropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/MapPropertyType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/NumberPropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/NumberPropertyType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/Operation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/Operation.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/PropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/PropertyType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/ReferencePropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/ReferencePropertyType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/Response.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/ScalarPropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/ScalarPropertyType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/Security.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/Security.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/SecurityApiKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/SecurityApiKey.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/SecurityHttpBasic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/SecurityHttpBasic.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/SecurityHttpBearer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/SecurityHttpBearer.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/SecurityOAuth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/SecurityOAuth.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/StringPropertyType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/StringPropertyType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/StructDefinitionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/StructDefinitionType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/TypeAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/TypeAPI.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/complex/TypeSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/complex/TypeSchema.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/default/Author.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/default/Author.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/default/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/default/Location.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/default/Meta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/default/Meta.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/default/News.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/default/News.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/import/Import.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/import/Import.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/import/MyMap.cs: -------------------------------------------------------------------------------- 1 | using System.Text.Json.Serialization; 2 | 3 | public class MyMap : Student 4 | { 5 | } 6 | 7 | -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/namespace/Import.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/namespace/Import.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/namespace/MyMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/namespace/MyMap.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/oop/HumanMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/oop/HumanMap.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/oop/HumanType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/oop/HumanType.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/oop/Map.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/oop/Map.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/oop/RootSchema.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/oop/RootSchema.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/oop/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/oop/Student.cs -------------------------------------------------------------------------------- /tests/Generator/resource/csharp/oop/StudentMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/csharp/oop/StudentMap.cs -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/any_property_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/any_property_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/argument.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/argument.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/array_definition_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/array_definition_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/array_property_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/array_property_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/boolean_property_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/boolean_property_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/collection_definition_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/collection_definition_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/collection_property_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/collection_property_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/definition_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/definition_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/generic_property_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/generic_property_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/integer_property_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/integer_property_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/map_definition_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/map_definition_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/map_property_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/map_property_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/number_property_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/number_property_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/operation.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/property_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/property_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/reference_property_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/reference_property_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/response.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/scalar_property_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/scalar_property_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/security.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/security.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/security_api_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/security_api_key.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/security_http_basic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/security_http_basic.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/security_http_bearer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/security_http_bearer.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/security_o_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/security_o_auth.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/string_property_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/string_property_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/struct_definition_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/struct_definition_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/type_api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/type_api.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/complex/type_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/complex/type_schema.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/default/author.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/default/author.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/default/location.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/default/location.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/default/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/default/meta.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/default/news.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/default/news.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/import/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/import/import.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/import/my_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/import/my_map.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/namespace/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/namespace/import.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/namespace/my_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/namespace/my_map.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/oop/human_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/oop/human_map.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/oop/human_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/oop/human_type.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/oop/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/oop/map.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/oop/root_schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/oop/root_schema.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/oop/student.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/oop/student.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/oop/student_map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/oop/student_map.go -------------------------------------------------------------------------------- /tests/Generator/resource/go/test/backend_test_.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/go/test/backend_test_.go -------------------------------------------------------------------------------- /tests/Generator/resource/graphql/graphql.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/graphql/graphql.graphql -------------------------------------------------------------------------------- /tests/Generator/resource/html/html.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/html/html.htm -------------------------------------------------------------------------------- /tests/Generator/resource/html/html_complex.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/html/html_complex.htm -------------------------------------------------------------------------------- /tests/Generator/resource/html/html_oop.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/html/html_oop.htm -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/AnyPropertyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/AnyPropertyType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/Argument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/Argument.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/ArrayDefinitionType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/ArrayDefinitionType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/ArrayPropertyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/ArrayPropertyType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/BooleanPropertyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/BooleanPropertyType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/CollectionDefinitionType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/CollectionDefinitionType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/CollectionPropertyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/CollectionPropertyType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/DefinitionType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/DefinitionType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/GenericPropertyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/GenericPropertyType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/IntegerPropertyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/IntegerPropertyType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/MapDefinitionType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/MapDefinitionType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/MapPropertyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/MapPropertyType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/NumberPropertyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/NumberPropertyType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/Operation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/Operation.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/PropertyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/PropertyType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/ReferencePropertyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/ReferencePropertyType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/Response.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/Response.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/ScalarPropertyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/ScalarPropertyType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/Security.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/Security.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/SecurityApiKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/SecurityApiKey.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/SecurityHttpBasic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/SecurityHttpBasic.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/SecurityHttpBearer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/SecurityHttpBearer.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/SecurityOAuth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/SecurityOAuth.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/StringPropertyType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/StringPropertyType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/StructDefinitionType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/StructDefinitionType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/TypeAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/TypeAPI.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/complex/TypeSchema.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/complex/TypeSchema.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/default/Author.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/default/Author.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/default/Location.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/default/Location.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/default/Meta.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/default/Meta.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/default/News.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/default/News.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/import/Import.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/import/Import.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/import/MyMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/import/MyMap.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/namespace/Import.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/namespace/Import.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/namespace/MyMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/namespace/MyMap.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/oop/HumanMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/oop/HumanMap.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/oop/HumanType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/oop/HumanType.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/oop/Map.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/oop/Map.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/oop/RootSchema.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/oop/RootSchema.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/oop/Student.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/oop/Student.java -------------------------------------------------------------------------------- /tests/Generator/resource/java/oop/StudentMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/java/oop/StudentMap.java -------------------------------------------------------------------------------- /tests/Generator/resource/jsonschema/jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/jsonschema/jsonschema.json -------------------------------------------------------------------------------- /tests/Generator/resource/jsonschema/jsonschema_complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/jsonschema/jsonschema_complex.json -------------------------------------------------------------------------------- /tests/Generator/resource/jsonschema/jsonschema_import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/jsonschema/jsonschema_import.json -------------------------------------------------------------------------------- /tests/Generator/resource/jsonschema/jsonschema_oop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/jsonschema/jsonschema_oop.json -------------------------------------------------------------------------------- /tests/Generator/resource/jsonschema/jsonschema_resolve_refs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/jsonschema/jsonschema_resolve_refs.json -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/AnyPropertyType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/AnyPropertyType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/Argument.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/Argument.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/ArrayDefinitionType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/ArrayDefinitionType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/ArrayPropertyType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/ArrayPropertyType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/BooleanPropertyType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/BooleanPropertyType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/CollectionDefinitionType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/CollectionDefinitionType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/CollectionPropertyType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/CollectionPropertyType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/DefinitionType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/DefinitionType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/GenericPropertyType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/GenericPropertyType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/IntegerPropertyType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/IntegerPropertyType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/MapDefinitionType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/MapDefinitionType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/MapPropertyType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/MapPropertyType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/NumberPropertyType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/NumberPropertyType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/Operation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/Operation.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/PropertyType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/PropertyType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/ReferencePropertyType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/ReferencePropertyType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/Response.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/Response.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/ScalarPropertyType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/ScalarPropertyType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/Security.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/Security.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/SecurityApiKey.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/SecurityApiKey.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/SecurityHttpBasic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/SecurityHttpBasic.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/SecurityHttpBearer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/SecurityHttpBearer.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/SecurityOAuth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/SecurityOAuth.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/StringPropertyType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/StringPropertyType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/StructDefinitionType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/StructDefinitionType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/TypeAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/TypeAPI.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/complex/TypeSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/complex/TypeSchema.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/default/Author.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/default/Author.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/default/Location.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/default/Location.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/default/Meta.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/default/Meta.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/default/News.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/default/News.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/import/Import.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/import/Import.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/import/MyMap.kt: -------------------------------------------------------------------------------- 1 | 2 | import com.fasterxml.jackson.annotation.* 3 | 4 | open class MyMap : Student { 5 | } 6 | 7 | -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/namespace/Import.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/namespace/Import.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/namespace/MyMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/namespace/MyMap.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/oop/HumanMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/oop/HumanMap.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/oop/HumanType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/oop/HumanType.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/oop/Map.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/oop/Map.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/oop/RootSchema.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/oop/RootSchema.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/oop/Student.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/oop/Student.kt -------------------------------------------------------------------------------- /tests/Generator/resource/kotlin/oop/StudentMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/kotlin/oop/StudentMap.kt -------------------------------------------------------------------------------- /tests/Generator/resource/markdown/markdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/markdown/markdown.md -------------------------------------------------------------------------------- /tests/Generator/resource/markdown/markdown_complex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/markdown/markdown_complex.md -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/AnyPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/AnyPropertyType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/Argument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/Argument.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/ArrayDefinitionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/ArrayDefinitionType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/ArrayPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/ArrayPropertyType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/BooleanPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/BooleanPropertyType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/CollectionDefinitionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/CollectionDefinitionType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/CollectionPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/CollectionPropertyType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/DefinitionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/DefinitionType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/GenericPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/GenericPropertyType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/IntegerPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/IntegerPropertyType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/MapDefinitionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/MapDefinitionType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/MapPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/MapPropertyType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/NumberPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/NumberPropertyType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/Operation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/Operation.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/PropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/PropertyType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/ReferencePropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/ReferencePropertyType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/Response.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/ScalarPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/ScalarPropertyType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/Security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/Security.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/SecurityApiKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/SecurityApiKey.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/SecurityHttpBasic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/SecurityHttpBasic.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/SecurityHttpBearer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/SecurityHttpBearer.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/SecurityOAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/SecurityOAuth.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/StringPropertyType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/StringPropertyType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/StructDefinitionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/StructDefinitionType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/TypeAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/TypeAPI.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/complex/TypeSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/complex/TypeSchema.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/default/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/default/Author.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/default/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/default/Location.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/default/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/default/Meta.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/default/News.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/default/News.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/import/Import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/import/Import.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/import/MyMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/import/MyMap.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/namespace/Import.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/namespace/Import.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/namespace/MyMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/namespace/MyMap.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/oop/HumanMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/oop/HumanMap.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/oop/HumanType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/oop/HumanType.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/oop/Map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/oop/Map.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/oop/RootSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/oop/RootSchema.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/oop/Student.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/oop/Student.php -------------------------------------------------------------------------------- /tests/Generator/resource/php/oop/StudentMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/php/oop/StudentMap.php -------------------------------------------------------------------------------- /tests/Generator/resource/protobuf/protobuf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/protobuf/protobuf.txt -------------------------------------------------------------------------------- /tests/Generator/resource/protobuf/protobuf_oop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/protobuf/protobuf_oop.txt -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/any_property_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/any_property_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/argument.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/array_definition_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/array_definition_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/array_property_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/array_property_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/boolean_property_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/boolean_property_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/collection_definition_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/collection_definition_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/collection_property_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/collection_property_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/definition_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/definition_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/generic_property_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/generic_property_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/integer_property_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/integer_property_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/map_definition_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/map_definition_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/map_property_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/map_property_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/number_property_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/number_property_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/operation.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/property_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/property_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/reference_property_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/reference_property_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/response.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/scalar_property_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/scalar_property_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/security.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/security_api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/security_api_key.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/security_http_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/security_http_basic.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/security_http_bearer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/security_http_bearer.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/security_o_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/security_o_auth.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/string_property_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/string_property_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/struct_definition_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/struct_definition_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/type_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/type_api.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/complex/type_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/complex/type_schema.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/default/author.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/default/author.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/default/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/default/location.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/default/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/default/meta.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/default/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/default/news.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/import/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/import/import.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/import/my_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/import/my_map.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/namespace/import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/namespace/import.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/namespace/my_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/namespace/my_map.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/oop/human_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/oop/human_map.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/oop/human_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/oop/human_type.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/oop/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/oop/map.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/oop/root_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/oop/root_schema.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/oop/student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/oop/student.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/oop/student_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/oop/student_map.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/union/common_form_container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/union/common_form_container.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/union/common_form_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/union/common_form_element.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/union/common_form_element_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/union/common_form_element_input.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/union/common_form_element_select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/union/common_form_element_select.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/union/common_form_element_select_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/union/common_form_element_select_option.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/union/common_form_element_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/union/common_form_element_tag.py -------------------------------------------------------------------------------- /tests/Generator/resource/python/union/common_form_element_text_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/python/union/common_form_element_text_area.py -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/any_property_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/any_property_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/argument.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/argument.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/array_definition_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/array_definition_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/array_property_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/array_property_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/boolean_property_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/boolean_property_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/collection_definition_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/collection_definition_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/collection_property_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/collection_property_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/definition_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/definition_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/generic_property_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/generic_property_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/integer_property_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/integer_property_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/map_definition_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/map_definition_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/map_property_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/map_property_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/number_property_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/number_property_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/operation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/operation.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/property_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/property_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/reference_property_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/reference_property_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/response.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/scalar_property_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/scalar_property_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/security.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/security.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/security_api_key.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/security_api_key.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/security_http_basic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/security_http_basic.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/security_http_bearer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/security_http_bearer.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/security_o_auth.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/security_o_auth.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/string_property_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/string_property_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/struct_definition_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/struct_definition_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/type_api.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/type_api.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/complex/type_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/complex/type_schema.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/default/author.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/default/author.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/default/location.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/default/location.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/default/news.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/default/news.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/import/import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/import/import.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/import/my_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/import/my_map.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/namespace/import.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/namespace/import.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/namespace/my_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/namespace/my_map.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/oop/human_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/oop/human_map.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/oop/human_type.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/oop/human_type.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/oop/map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/oop/map.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/oop/root_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/oop/root_schema.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/oop/student.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/oop/student.rb -------------------------------------------------------------------------------- /tests/Generator/resource/ruby/oop/student_map.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/ruby/oop/student_map.rb -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/any_property_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/any_property_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/argument.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/argument.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/array_definition_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/array_definition_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/array_property_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/array_property_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/boolean_property_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/boolean_property_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/collection_definition_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/collection_definition_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/collection_property_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/collection_property_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/definition_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/definition_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/generic_property_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/generic_property_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/integer_property_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/integer_property_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/map_definition_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/map_definition_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/map_property_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/map_property_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/number_property_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/number_property_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/operation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/operation.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/property_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/property_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/reference_property_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/reference_property_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/response.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/response.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/scalar_property_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/scalar_property_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/security.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/security.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/security_api_key.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/security_api_key.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/security_http_basic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/security_http_basic.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/security_http_bearer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/security_http_bearer.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/security_o_auth.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/security_o_auth.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/string_property_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/string_property_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/struct_definition_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/struct_definition_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/type_api.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/type_api.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/complex/type_schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/complex/type_schema.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/default/author.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/default/author.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/default/location.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/default/location.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/default/meta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/default/meta.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/default/news.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/default/news.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/import/import.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/import/import.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/import/my_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/import/my_map.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/namespace/import.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/namespace/import.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/namespace/my_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/namespace/my_map.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/oop/human_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/oop/human_map.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/oop/human_type.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/oop/human_type.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/oop/map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/oop/map.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/oop/root_schema.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/oop/root_schema.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/oop/student.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/oop/student.rs -------------------------------------------------------------------------------- /tests/Generator/resource/rust/oop/student_map.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/rust/oop/student_map.rs -------------------------------------------------------------------------------- /tests/Generator/resource/source_import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/source_import.json -------------------------------------------------------------------------------- /tests/Generator/resource/source_oop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/source_oop.json -------------------------------------------------------------------------------- /tests/Generator/resource/source_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/source_test.json -------------------------------------------------------------------------------- /tests/Generator/resource/source_typeschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/source_typeschema.json -------------------------------------------------------------------------------- /tests/Generator/resource/source_union.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/source_union.json -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/AnyPropertyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/AnyPropertyType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/Argument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/Argument.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/ArrayDefinitionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/ArrayDefinitionType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/ArrayPropertyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/ArrayPropertyType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/BooleanPropertyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/BooleanPropertyType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/CollectionDefinitionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/CollectionDefinitionType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/CollectionPropertyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/CollectionPropertyType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/DefinitionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/DefinitionType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/GenericPropertyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/GenericPropertyType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/IntegerPropertyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/IntegerPropertyType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/MapDefinitionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/MapDefinitionType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/MapPropertyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/MapPropertyType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/NumberPropertyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/NumberPropertyType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/Operation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/Operation.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/PropertyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/PropertyType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/ReferencePropertyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/ReferencePropertyType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/Response.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/ScalarPropertyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/ScalarPropertyType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/Security.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/Security.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/SecurityApiKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/SecurityApiKey.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/SecurityHttpBasic.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/SecurityHttpBasic.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/SecurityHttpBearer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/SecurityHttpBearer.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/SecurityOAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/SecurityOAuth.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/StringPropertyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/StringPropertyType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/StructDefinitionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/StructDefinitionType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/TypeAPI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/TypeAPI.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/complex/TypeSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/complex/TypeSchema.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/default/Author.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/default/Author.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/default/Location.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/default/Location.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/default/Meta.swift: -------------------------------------------------------------------------------- 1 | typealias Meta = String; 2 | 3 | -------------------------------------------------------------------------------- /tests/Generator/resource/swift/default/News.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/default/News.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/import/Import.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/import/Import.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/import/MyMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/import/MyMap.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/namespace/Import.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/namespace/Import.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/namespace/MyMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/namespace/MyMap.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/oop/HumanMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/oop/HumanMap.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/oop/HumanType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/oop/HumanType.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/oop/Map.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/oop/Map.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/oop/RootSchema.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/oop/RootSchema.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/oop/Student.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/oop/Student.swift -------------------------------------------------------------------------------- /tests/Generator/resource/swift/oop/StudentMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/swift/oop/StudentMap.swift -------------------------------------------------------------------------------- /tests/Generator/resource/typeschema/typeschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typeschema/typeschema.json -------------------------------------------------------------------------------- /tests/Generator/resource/typeschema/typeschema_complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typeschema/typeschema_complex.json -------------------------------------------------------------------------------- /tests/Generator/resource/typeschema/typeschema_import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typeschema/typeschema_import.json -------------------------------------------------------------------------------- /tests/Generator/resource/typeschema/typeschema_oop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typeschema/typeschema_oop.json -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/AnyPropertyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/AnyPropertyType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/Argument.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/Argument.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/ArrayDefinitionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/ArrayDefinitionType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/ArrayPropertyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/ArrayPropertyType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/BooleanPropertyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/BooleanPropertyType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/CollectionDefinitionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/CollectionDefinitionType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/CollectionPropertyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/CollectionPropertyType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/DefinitionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/DefinitionType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/GenericPropertyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/GenericPropertyType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/IntegerPropertyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/IntegerPropertyType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/MapDefinitionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/MapDefinitionType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/MapPropertyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/MapPropertyType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/NumberPropertyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/NumberPropertyType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/Operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/Operation.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/PropertyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/PropertyType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/ReferencePropertyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/ReferencePropertyType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/Response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/Response.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/ScalarPropertyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/ScalarPropertyType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/Security.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/Security.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/SecurityApiKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/SecurityApiKey.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/SecurityHttpBasic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/SecurityHttpBasic.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/SecurityHttpBearer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/SecurityHttpBearer.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/SecurityOAuth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/SecurityOAuth.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/StringPropertyType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/StringPropertyType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/StructDefinitionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/StructDefinitionType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/TypeAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/TypeAPI.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/complex/TypeSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/complex/TypeSchema.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/default/Author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/default/Author.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/default/Location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/default/Location.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/default/Meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/default/Meta.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/default/News.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/default/News.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/import/Import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/import/Import.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/import/MyMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/import/MyMap.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/namespace/Import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/namespace/Import.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/namespace/MyMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/namespace/MyMap.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/oop/HumanMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/oop/HumanMap.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/oop/HumanType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/oop/HumanType.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/oop/Map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/oop/Map.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/oop/RootSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/oop/RootSchema.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/oop/Student.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/oop/Student.ts -------------------------------------------------------------------------------- /tests/Generator/resource/typescript/oop/StudentMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/typescript/oop/StudentMap.ts -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/AnyPropertyType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/AnyPropertyType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/Argument.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/Argument.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/ArrayDefinitionType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/ArrayDefinitionType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/ArrayPropertyType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/ArrayPropertyType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/BooleanPropertyType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/BooleanPropertyType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/CollectionDefinitionType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/CollectionDefinitionType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/CollectionPropertyType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/CollectionPropertyType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/DefinitionType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/DefinitionType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/GenericPropertyType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/GenericPropertyType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/IntegerPropertyType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/IntegerPropertyType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/MapDefinitionType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/MapDefinitionType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/MapPropertyType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/MapPropertyType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/NumberPropertyType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/NumberPropertyType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/Operation.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/Operation.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/PropertyType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/PropertyType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/ReferencePropertyType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/ReferencePropertyType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/Response.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/Response.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/ScalarPropertyType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/ScalarPropertyType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/Security.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/Security.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/SecurityApiKey.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/SecurityApiKey.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/SecurityHttpBasic.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/SecurityHttpBasic.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/SecurityHttpBearer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/SecurityHttpBearer.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/SecurityOAuth.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/SecurityOAuth.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/StringPropertyType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/StringPropertyType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/StructDefinitionType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/StructDefinitionType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/TypeAPI.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/TypeAPI.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/complex/TypeSchema.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/complex/TypeSchema.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/default/Author.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/default/Author.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/default/Location.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/default/Location.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/default/Meta.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/default/Meta.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/default/News.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/default/News.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/import/Import.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/import/Import.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/import/MyMap.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/import/MyMap.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/namespace/Import.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/namespace/Import.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/namespace/MyMap.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/namespace/MyMap.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/oop/HumanMap.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/oop/HumanMap.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/oop/HumanType.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/oop/HumanType.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/oop/Map.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/oop/Map.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/oop/RootSchema.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/oop/RootSchema.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/oop/Student.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/oop/Student.vb -------------------------------------------------------------------------------- /tests/Generator/resource/visualbasic/oop/StudentMap.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Generator/resource/visualbasic/oop/StudentMap.vb -------------------------------------------------------------------------------- /tests/Inspector/ChangelogGeneratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Inspector/ChangelogGeneratorTest.php -------------------------------------------------------------------------------- /tests/Inspector/HashTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Inspector/HashTest.php -------------------------------------------------------------------------------- /tests/Inspector/SemVerElevatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Inspector/SemVerElevatorTest.php -------------------------------------------------------------------------------- /tests/Inspector/SemVerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Inspector/SemVerTest.php -------------------------------------------------------------------------------- /tests/ObjectMapperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/ObjectMapperTest.php -------------------------------------------------------------------------------- /tests/Parser/DocumentorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/DocumentorTest.php -------------------------------------------------------------------------------- /tests/Parser/ParserTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/ParserTestCase.php -------------------------------------------------------------------------------- /tests/Parser/Popo/ArrayInArray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/ArrayInArray.php -------------------------------------------------------------------------------- /tests/Parser/Popo/ArrayList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/ArrayList.php -------------------------------------------------------------------------------- /tests/Parser/Popo/Attribute/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/Attribute/Author.php -------------------------------------------------------------------------------- /tests/Parser/Popo/Attribute/Location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/Attribute/Location.php -------------------------------------------------------------------------------- /tests/Parser/Popo/Attribute/Meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/Attribute/Meta.php -------------------------------------------------------------------------------- /tests/Parser/Popo/Attribute/News.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/Attribute/News.php -------------------------------------------------------------------------------- /tests/Parser/Popo/DumperTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/DumperTest.php -------------------------------------------------------------------------------- /tests/Parser/Popo/Form_Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/Form_Container.php -------------------------------------------------------------------------------- /tests/Parser/Popo/Form_Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/Form_Element.php -------------------------------------------------------------------------------- /tests/Parser/Popo/Form_Element_Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/Form_Element_Input.php -------------------------------------------------------------------------------- /tests/Parser/Popo/Form_Element_Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/Form_Element_Select.php -------------------------------------------------------------------------------- /tests/Parser/Popo/Form_Element_Tag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/Form_Element_Tag.php -------------------------------------------------------------------------------- /tests/Parser/Popo/Form_Element_TextArea.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/Form_Element_TextArea.php -------------------------------------------------------------------------------- /tests/Parser/Popo/HashMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/HashMap.php -------------------------------------------------------------------------------- /tests/Parser/Popo/TypeNameTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/TypeNameTest.php -------------------------------------------------------------------------------- /tests/Parser/Popo/expect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/expect.json -------------------------------------------------------------------------------- /tests/Parser/Popo/expect_iterable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/Popo/expect_iterable.json -------------------------------------------------------------------------------- /tests/Parser/PopoTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/PopoTest.php -------------------------------------------------------------------------------- /tests/Parser/TypeSchema/form_container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/TypeSchema/form_container.json -------------------------------------------------------------------------------- /tests/Parser/TypeSchema/test_schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/TypeSchema/test_schema.json -------------------------------------------------------------------------------- /tests/Parser/TypeSchema/test_schema_external.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/TypeSchema/test_schema_external.json -------------------------------------------------------------------------------- /tests/Parser/TypeSchema/test_schema_import.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/TypeSchema/test_schema_import.json -------------------------------------------------------------------------------- /tests/Parser/TypeSchema/test_schema_typehub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/TypeSchema/test_schema_typehub.json -------------------------------------------------------------------------------- /tests/Parser/TypeSchema/typeschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/TypeSchema/typeschema.json -------------------------------------------------------------------------------- /tests/Parser/TypeSchemaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Parser/TypeSchemaTest.php -------------------------------------------------------------------------------- /tests/Schema/SchemaA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Schema/SchemaA.php -------------------------------------------------------------------------------- /tests/Schema/SchemaB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Schema/SchemaB.php -------------------------------------------------------------------------------- /tests/Schema/SchemaCommon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Schema/SchemaCommon.php -------------------------------------------------------------------------------- /tests/SchemaAbstractTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/SchemaAbstractTest.php -------------------------------------------------------------------------------- /tests/SchemaManagerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/SchemaManagerTest.php -------------------------------------------------------------------------------- /tests/SchemaResolverTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/SchemaResolverTest.php -------------------------------------------------------------------------------- /tests/SchemaSourceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/SchemaSourceTest.php -------------------------------------------------------------------------------- /tests/SchemaTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/SchemaTestCase.php -------------------------------------------------------------------------------- /tests/SchemaTraverser/expected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/SchemaTraverser/expected.json -------------------------------------------------------------------------------- /tests/SchemaTraverserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/SchemaTraverserTest.php -------------------------------------------------------------------------------- /tests/TestSchema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/TestSchema.php -------------------------------------------------------------------------------- /tests/Transformer/JsonSchemaTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Transformer/JsonSchemaTest.php -------------------------------------------------------------------------------- /tests/Transformer/jsonschema/actual/00_jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Transformer/jsonschema/actual/00_jsonschema.json -------------------------------------------------------------------------------- /tests/Transformer/jsonschema/actual/01_jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Transformer/jsonschema/actual/01_jsonschema.json -------------------------------------------------------------------------------- /tests/Transformer/jsonschema/actual/02_jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Transformer/jsonschema/actual/02_jsonschema.json -------------------------------------------------------------------------------- /tests/Transformer/jsonschema/actual/03_jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Transformer/jsonschema/actual/03_jsonschema.json -------------------------------------------------------------------------------- /tests/Transformer/jsonschema/actual/04_jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Transformer/jsonschema/actual/04_jsonschema.json -------------------------------------------------------------------------------- /tests/Transformer/jsonschema/expect/00_jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Transformer/jsonschema/expect/00_jsonschema.json -------------------------------------------------------------------------------- /tests/Transformer/jsonschema/expect/01_jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Transformer/jsonschema/expect/01_jsonschema.json -------------------------------------------------------------------------------- /tests/Transformer/jsonschema/expect/02_jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Transformer/jsonschema/expect/02_jsonschema.json -------------------------------------------------------------------------------- /tests/Transformer/jsonschema/expect/03_jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Transformer/jsonschema/expect/03_jsonschema.json -------------------------------------------------------------------------------- /tests/Transformer/jsonschema/expect/04_jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Transformer/jsonschema/expect/04_jsonschema.json -------------------------------------------------------------------------------- /tests/Type/Factory/DefinitionTypeFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Type/Factory/DefinitionTypeFactoryTest.php -------------------------------------------------------------------------------- /tests/Type/Factory/PropertyTypeFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Type/Factory/PropertyTypeFactoryTest.php -------------------------------------------------------------------------------- /tests/Validation/ValidatorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Validation/ValidatorTest.php -------------------------------------------------------------------------------- /tests/Visitor/TypeVisitor/ArrayAccessClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Visitor/TypeVisitor/ArrayAccessClass.php -------------------------------------------------------------------------------- /tests/Visitor/TypeVisitor/PopoClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Visitor/TypeVisitor/PopoClass.php -------------------------------------------------------------------------------- /tests/Visitor/TypeVisitor/RecordClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Visitor/TypeVisitor/RecordClass.php -------------------------------------------------------------------------------- /tests/Visitor/TypeVisitor/StdClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Visitor/TypeVisitor/StdClass.php -------------------------------------------------------------------------------- /tests/Visitor/TypeVisitorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apioo/psx-schema/HEAD/tests/Visitor/TypeVisitorTest.php --------------------------------------------------------------------------------