Top "Schema" questions

Schema means shape, or more generally, plan.

Flattening XSD schema documents (HR-XML 3.0)

I have several "main" XSD documents, which import "supporting" XSD documents. These schema documents happen to be from the HR-XML 3.0 …

xsd schema flatten
Choice of Database schema for storing folder system

I'm trying to implement an SQLite-based database that can store the full structure of a 100GB folder with a complex …

database database-design sqlite schema
How to Inherit or Extend typeDefs in GraphQL

I have a type User. Users can also be a type TeamMember. The only difference between a User and TeamMember …

inheritance schema graphql extend extends
Spark structured streaming kafka convert JSON without schema (infer schema)

I read Spark Structured Streaming doesn't support schema inference for reading Kafka messages as JSON. Is there a way to …

apache-spark apache-kafka schema spark-structured-streaming
How to extract schema for avro file in python

I am trying to use the Python Avro library (https://pypi.python.org/pypi/avro) to read a AVRO file …

python schema avro
How to parse an xsd file which has nested elements(complexType and simpleType elements and attributes)?

I have an xsd file like that: <?xml version="1.0" encoding="utf-8" ?> <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" …

c# xsd schema complextype
Mongoose Populate in Node JS

I've been trying to follow the information in Mongoose Population, but I'm getting the exception: MissingSchemaError: Schema hasn't been registered …

schema mongoose populate
Normalizing Human Skin Colors for User Interaction

A while ago I came across this answer that introduced me to the obscure (at least for me) ISO 5218: a …

database user-interface schema standards iso
How to generate a schema from a CSV for a PostgreSQL Copy

Given a CSV with several dozen or more columns, how can a 'schema' be created that can be used in …

postgresql csv schema postgresql-copy
Validate dicts in Python

i looking for tool, or examples to/how to validate dictionaries in python. For example, i have dict: test = {'foo' : …

python validation dictionary schema associative-array